Code Search for Developers
 
 
  

RegisterObj.cs from MASE: Agile Software Engineering at Krugle


Show RegisterObj.cs syntax highlighted

using System;
using System.Drawing;
using Whiteboard.MaseWS;

namespace Whiteboard
{
	/// <summary>
	/// Summary description for RegisterObj.
	/// </summary>
	public class RegisterObj
	{
		public static int UpdateStoryContent = 1;
		public static int UpdateStoryLocation = 2;
		public static int CreateStoryContent = 3;
		public static int CreateIterationContent = 4;
		public static int UpdateRollback = 5;

		private TabletVO tabVO;
		private int contentChangType;

		public RegisterObj(TabletVO tabVO, int contentChangType)
		{
			this.tabVO = tabVO;
			this.contentChangType = contentChangType;
		}

		public RegisterObj()
		{
		}

		public int getContentChangeType()
		{
			return this.contentChangType;
		}

		public void setContentChangeType(int contentChangeType)
		{
			this.contentChangType = contentChangeType;
		}

		public TabletVO getTabVO()
		{
			return this.tabVO;
		}
	}
}




See more files for this project here

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  ApplicationProperties.cs
  CardLocationWith4Corners.cs
  HandWrittenObj.cs
  HandwrittenStoryCard.cs
  Iteration.cs
  Iteration.resx
  MaseListen.cs
  MaseUpdate.cs
  ProcessNode.cs
  ProjectNode.cs
  RegisterObj.cs
  Serializer.cs
  SingleWS.cs
  StoryObj.cs
  TabletContentandUtil.cs
  Utility.cs
  VLabel.cs
  VLabel.resx