Code Search for Developers
 
 
  

WikiSection.java from MASE: Agile Software Engineering at Krugle


Show WikiSection.java syntax highlighted

package ca.ucalgary.cpsc.ebe.fitClipse.fixtureGeneration;

public class WikiSection {

	private boolean isTable = false;
	private String content = null;
	
	private int fixtureType = -1;
	
	public static final int UNDECLARED = -1;
	public static final int DO_FIXTURE = 0;
	public static final int DO_FIXTURE_CONT = 1;
	public static final int ACTION_FIXTURE = 2;
	public static final int COLUMN_FIXTURE = 3;
	public static final int ROW_FIXTURE = 4;
	
	public WikiSection(String content){
		this.content = content;
		
	}

	public String getContent() {
		return content.replace("!-","").replace("-!","");
	}

	public void setContent(String content) {
		this.content = content;
	}

	public boolean isTable() {
		return isTable;
	}

	public void setTable(boolean isTable) {
		this.isTable = isTable;
	}

	public int getFixtureType() {
		return fixtureType;
	}

	public void setFixtureType(int fixtureType) {
		this.fixtureType = fixtureType;
	}
	
	
	
	
}




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

  ActionFixtureSource.java
  ColumnFixtureSource.java
  DoFixtureSource.java
  DoFixtureSource_2.java
  ExtendedCamelCase.java
  FixtureSource.java
  FixtureSourceFactory.java
  FixtureSourceTest.java
  RowFixtureSource.java
  Util.java
  WikiDocumentParser.java
  WikiSection.java