TreeContentUnitAux.java from Kneobase at Krugle
Show TreeContentUnitAux.java syntax highlighted
/*
* Created on 07/12/2004
*
*/
package com.kneobase.driver;
import com.kneobase.driver.content.ContentUnitAux;
import com.kneobase.driver.content.I_CompositeContent;
import com.kneobase.driver.content.I_TreeContentUnit;
/**
* @author Ernesto De Santis
*
*/
public class TreeContentUnitAux
extends ContentUnitAux
implements I_TreeContentUnit {
private String path;
private String absolutePath = "nopath";
private char separatorChar = '/';
public TreeContentUnitAux() {
}
/**
* @param content
*/
public TreeContentUnitAux(Object content) {
super(content);
}
/**
* @param content
* @param parent
*/
public TreeContentUnitAux(Object content, I_CompositeContent parent) {
super(content, parent);
}
public TreeContentUnitAux(I_CompositeContent parent) {
super(parent);
}
/**
* @return
*/
public String getAbsolutePath() {
return absolutePath;
}
/**
* @param string
*/
public void setAbsolutePath(String string) {
absolutePath = string;
}
public char separatorChar() {
return separatorChar;
}
/**
* @param c
*/
public void setSeparatorChar(char c) {
separatorChar = c;
}
public String getPath() {
return path;
}
/**
* @param string
*/
public void setPath(String string) {
path = string;
}
}
See more files for this project here