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