Removed property, 'precedence', from all components and modified Controller accordingly
This commit is contained in:
parent
9ba899335c
commit
d398e86fa0
52 changed files with 679 additions and 1223 deletions
|
@ -226,13 +226,13 @@ jmeter.save.saveservice.output_format=xml
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="hbm2java" description="generate source code">
|
<target name="hbm2java" description="generate source code">
|
||||||
<tstamp prefix="now"/>
|
<!-- <tstamp prefix="now"/>
|
||||||
<echo message="time is: ${now.DSTAMP}_${now.TSTAMP}"/>
|
<echo message="time is: ${now.DSTAMP}_${now.TSTAMP}"/>
|
||||||
<copy todir="${basedir}/backups/lex-src-bkp_${now.DSTAMP}_${now.TSTAMP}">
|
<copy todir="${basedir}/backups/lex-src-bkp_${now.DSTAMP}_${now.TSTAMP}">
|
||||||
<fileset dir="${source}/java/org/thdl/lex/component">
|
<fileset dir="${source}/java/org/thdl/lex/component">
|
||||||
<include name="**/*.java"/>
|
<include name="**/*.java"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
</copy>
|
</copy> -->
|
||||||
<java classname="net.sf.hibernate.tool.hbm2java.CodeGenerator" classpathref="classpath" fork="yes">
|
<java classname="net.sf.hibernate.tool.hbm2java.CodeGenerator" classpathref="classpath" fork="yes">
|
||||||
<arg value="--output=${source}/java"/>
|
<arg value="--output=${source}/java"/>
|
||||||
<arg value="--config=${basedir}/config/lex-codegen-cfg.xml"/>
|
<arg value="--config=${basedir}/config/lex-codegen-cfg.xml"/>
|
||||||
|
|
|
@ -335,10 +335,15 @@ public class DisplayHelper
|
||||||
return getCollection().hashCode();
|
return getCollection().hashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getIndexOfComponent()
|
||||||
|
{
|
||||||
|
int i = ((List)getCollection()).indexOf( getComponent() ) + 1;
|
||||||
|
return "" + i;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*Constructor for the DisplayHelper object
|
*Constructor for the DisplayHelper object
|
||||||
*/
|
*/
|
||||||
public DisplayHelper() { }
|
public DisplayHelper() { }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -89,7 +89,7 @@ public class GetInsertFormCommand extends LexCommand implements Command
|
||||||
AnalyticalNote note = new AnalyticalNote();
|
AnalyticalNote note = new AnalyticalNote();
|
||||||
note.setParentId( component.getMetaId() );
|
note.setParentId( component.getMetaId() );
|
||||||
//note.setAnalyticalNote( req.getParameter( "analyticalNote" ) );
|
//note.setAnalyticalNote( req.getParameter( "analyticalNote" ) );
|
||||||
note.setPrecedence( new Integer( 0 ) );
|
//note.setPrecedence( new Integer( 0 ) );
|
||||||
component.setAnalyticalNotes( new LinkedList() );
|
component.setAnalyticalNotes( new LinkedList() );
|
||||||
component.getAnalyticalNotes().add( note );
|
component.getAnalyticalNotes().add( note );
|
||||||
meta = new Meta( user, prefs );
|
meta = new Meta( user, prefs );
|
||||||
|
|
|
@ -151,7 +151,7 @@ public class InsertCommand extends LexCommand implements Command
|
||||||
AnalyticalNote note = new AnalyticalNote();
|
AnalyticalNote note = new AnalyticalNote();
|
||||||
note.setAnalyticalNote( req.getParameter( "analyticalNote" ) );
|
note.setAnalyticalNote( req.getParameter( "analyticalNote" ) );
|
||||||
note.setParentId( component.getMetaId() );
|
note.setParentId( component.getMetaId() );
|
||||||
note.setPrecedence( new Integer( 0 ) );
|
//note.setPrecedence( new Integer( 0 ) );
|
||||||
component.setAnalyticalNotes( new LinkedList() );
|
component.setAnalyticalNotes( new LinkedList() );
|
||||||
component.getAnalyticalNotes().add( note );
|
component.getAnalyticalNotes().add( note );
|
||||||
meta = new Meta( user, prefs );
|
meta = new Meta( user, prefs );
|
||||||
|
|
|
@ -8,22 +8,18 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseAnalyticalNote extends LexComponent implements Serializable,org.thdl.lex.component.IAnalyticalNote {
|
abstract public class BaseAnalyticalNote extends LexComponent implements Serializable,org.thdl.lex.component.IAnalyticalNote {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer precedence;
|
private String analyticalNote;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.String analyticalNote;
|
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseAnalyticalNote(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String analyticalNote, org.thdl.lex.component.ILexComponent parent) {
|
public BaseAnalyticalNote(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String analyticalNote, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.analyticalNote = analyticalNote;
|
this.analyticalNote = analyticalNote;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
@ -33,31 +29,23 @@ abstract public class BaseAnalyticalNote extends LexComponent implements Seriali
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseAnalyticalNote(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
public BaseAnalyticalNote(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getAnalyticalNote() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getAnalyticalNote() {
|
|
||||||
return this.analyticalNote;
|
return this.analyticalNote;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAnalyticalNote(java.lang.String analyticalNote) {
|
public void setAnalyticalNote(String analyticalNote) {
|
||||||
this.analyticalNote = analyticalNote;
|
this.analyticalNote = analyticalNote;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,16 +8,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseDefinition extends LexComponent implements org.thdl.lex.component.IDefinition,org.thdl.lex.component.Translatable, org.thdl.lex.component.LexComponentNode,Serializable {
|
abstract public class BaseDefinition extends LexComponent implements org.thdl.lex.component.IDefinition,org.thdl.lex.component.Translatable, org.thdl.lex.component.LexComponentNode,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** persistent field */
|
|
||||||
private java.lang.Integer precedence;
|
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String definition;
|
private String definition;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer translationOf;
|
private Integer translationOf;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
@ -50,10 +47,9 @@ abstract public class BaseDefinition extends LexComponent implements org.thdl.le
|
||||||
private List registers;
|
private List registers;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseDefinition(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String definition, java.lang.Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations, List subdefinitions, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers) {
|
public BaseDefinition(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String definition, Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations, List subdefinitions, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.definition = definition;
|
this.definition = definition;
|
||||||
this.translationOf = translationOf;
|
this.translationOf = translationOf;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
@ -73,9 +69,8 @@ abstract public class BaseDefinition extends LexComponent implements org.thdl.le
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseDefinition(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer precedence, List translations, List subdefinitions, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers) {
|
public BaseDefinition(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, List translations, List subdefinitions, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.precedence = precedence;
|
|
||||||
this.translations = translations;
|
this.translations = translations;
|
||||||
this.subdefinitions = subdefinitions;
|
this.subdefinitions = subdefinitions;
|
||||||
this.glosses = glosses;
|
this.glosses = glosses;
|
||||||
|
@ -87,35 +82,27 @@ abstract public class BaseDefinition extends LexComponent implements org.thdl.le
|
||||||
this.registers = registers;
|
this.registers = registers;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getDefinition() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getDefinition() {
|
|
||||||
return this.definition;
|
return this.definition;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDefinition(java.lang.String definition) {
|
public void setDefinition(String definition) {
|
||||||
this.definition = definition;
|
this.definition = definition;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getTranslationOf() {
|
public Integer getTranslationOf() {
|
||||||
return this.translationOf;
|
return this.translationOf;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslationOf(java.lang.Integer translationOf) {
|
public void setTranslationOf(Integer translationOf) {
|
||||||
this.translationOf = translationOf;
|
this.translationOf = translationOf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,75 +114,75 @@ abstract public class BaseDefinition extends LexComponent implements org.thdl.le
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getTranslations() {
|
public List getTranslations() {
|
||||||
return this.translations;
|
return this.translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslations(java.util.List translations) {
|
public void setTranslations(List translations) {
|
||||||
this.translations = translations;
|
this.translations = translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getSubdefinitions() {
|
public List getSubdefinitions() {
|
||||||
return this.subdefinitions;
|
return this.subdefinitions;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSubdefinitions(java.util.List subdefinitions) {
|
public void setSubdefinitions(List subdefinitions) {
|
||||||
this.subdefinitions = subdefinitions;
|
this.subdefinitions = subdefinitions;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getGlosses() {
|
public List getGlosses() {
|
||||||
return this.glosses;
|
return this.glosses;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setGlosses(java.util.List glosses) {
|
public void setGlosses(List glosses) {
|
||||||
this.glosses = glosses;
|
this.glosses = glosses;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getKeywords() {
|
public List getKeywords() {
|
||||||
return this.keywords;
|
return this.keywords;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setKeywords(java.util.List keywords) {
|
public void setKeywords(List keywords) {
|
||||||
this.keywords = keywords;
|
this.keywords = keywords;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getModelSentences() {
|
public List getModelSentences() {
|
||||||
return this.modelSentences;
|
return this.modelSentences;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setModelSentences(java.util.List modelSentences) {
|
public void setModelSentences(List modelSentences) {
|
||||||
this.modelSentences = modelSentences;
|
this.modelSentences = modelSentences;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getTranslationEquivalents() {
|
public List getTranslationEquivalents() {
|
||||||
return this.translationEquivalents;
|
return this.translationEquivalents;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslationEquivalents(java.util.List translationEquivalents) {
|
public void setTranslationEquivalents(List translationEquivalents) {
|
||||||
this.translationEquivalents = translationEquivalents;
|
this.translationEquivalents = translationEquivalents;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getRelatedTerms() {
|
public List getRelatedTerms() {
|
||||||
return this.relatedTerms;
|
return this.relatedTerms;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRelatedTerms(java.util.List relatedTerms) {
|
public void setRelatedTerms(List relatedTerms) {
|
||||||
this.relatedTerms = relatedTerms;
|
this.relatedTerms = relatedTerms;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getPassages() {
|
public List getPassages() {
|
||||||
return this.passages;
|
return this.passages;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPassages(java.util.List passages) {
|
public void setPassages(List passages) {
|
||||||
this.passages = passages;
|
this.passages = passages;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getRegisters() {
|
public List getRegisters() {
|
||||||
return this.registers;
|
return this.registers;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRegisters(java.util.List registers) {
|
public void setRegisters(List registers) {
|
||||||
this.registers = registers;
|
this.registers = registers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,25 +8,21 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseEncyclopediaArticle extends LexComponent implements org.thdl.lex.component.IEncyclopediaArticle,Serializable {
|
abstract public class BaseEncyclopediaArticle extends LexComponent implements org.thdl.lex.component.IEncyclopediaArticle,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer precedence;
|
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String article;
|
private String article;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String articleTitle;
|
private String articleTitle;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseEncyclopediaArticle(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String article, java.lang.String articleTitle, org.thdl.lex.component.ILexComponent parent) {
|
public BaseEncyclopediaArticle(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String article, String articleTitle, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.article = article;
|
this.article = article;
|
||||||
this.articleTitle = articleTitle;
|
this.articleTitle = articleTitle;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
@ -37,41 +33,33 @@ abstract public class BaseEncyclopediaArticle extends LexComponent implements or
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseEncyclopediaArticle(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.String article, java.lang.String articleTitle) {
|
public BaseEncyclopediaArticle(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, String article, String articleTitle) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.article = article;
|
this.article = article;
|
||||||
this.articleTitle = articleTitle;
|
this.articleTitle = articleTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getArticle() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getArticle() {
|
|
||||||
return this.article;
|
return this.article;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setArticle(java.lang.String article) {
|
public void setArticle(String article) {
|
||||||
this.article = article;
|
this.article = article;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getArticleTitle() {
|
public String getArticleTitle() {
|
||||||
return this.articleTitle;
|
return this.articleTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setArticleTitle(java.lang.String articleTitle) {
|
public void setArticleTitle(String articleTitle) {
|
||||||
this.articleTitle = articleTitle;
|
this.articleTitle = articleTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,25 +8,22 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseEtymology extends LexComponent implements org.thdl.lex.component.Translatable,Serializable,org.thdl.lex.component.IEtymology {
|
abstract public class BaseEtymology extends LexComponent implements org.thdl.lex.component.Translatable,Serializable,org.thdl.lex.component.IEtymology {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer precedence;
|
private Integer loanLanguage;
|
||||||
|
|
||||||
|
/** persistent field */
|
||||||
|
private Integer etymologyType;
|
||||||
|
|
||||||
|
/** persistent field */
|
||||||
|
private String derivation;
|
||||||
|
|
||||||
|
/** persistent field */
|
||||||
|
private String etymologyDescription;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer loanLanguage;
|
private Integer translationOf;
|
||||||
|
|
||||||
/** persistent field */
|
|
||||||
private java.lang.Integer etymologyType;
|
|
||||||
|
|
||||||
/** persistent field */
|
|
||||||
private java.lang.String derivation;
|
|
||||||
|
|
||||||
/** persistent field */
|
|
||||||
private java.lang.String etymologyDescription;
|
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer translationOf;
|
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
@ -35,10 +32,9 @@ abstract public class BaseEtymology extends LexComponent implements org.thdl.lex
|
||||||
private List translations;
|
private List translations;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseEtymology(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.Integer loanLanguage, java.lang.Integer etymologyType, java.lang.String derivation, java.lang.String etymologyDescription, java.lang.Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations) {
|
public BaseEtymology(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, Integer loanLanguage, Integer etymologyType, String derivation, String etymologyDescription, Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.loanLanguage = loanLanguage;
|
this.loanLanguage = loanLanguage;
|
||||||
this.etymologyType = etymologyType;
|
this.etymologyType = etymologyType;
|
||||||
this.derivation = derivation;
|
this.derivation = derivation;
|
||||||
|
@ -53,7 +49,7 @@ abstract public class BaseEtymology extends LexComponent implements org.thdl.lex
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseEtymology(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer etymologyType, java.lang.String derivation, java.lang.String etymologyDescription, List translations) {
|
public BaseEtymology(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer etymologyType, String derivation, String etymologyDescription, List translations) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.etymologyType = etymologyType;
|
this.etymologyType = etymologyType;
|
||||||
this.derivation = derivation;
|
this.derivation = derivation;
|
||||||
|
@ -61,59 +57,51 @@ abstract public class BaseEtymology extends LexComponent implements org.thdl.lex
|
||||||
this.translations = translations;
|
this.translations = translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public Integer getLoanLanguage() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.Integer getLoanLanguage() {
|
|
||||||
return this.loanLanguage;
|
return this.loanLanguage;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLoanLanguage(java.lang.Integer loanLanguage) {
|
public void setLoanLanguage(Integer loanLanguage) {
|
||||||
this.loanLanguage = loanLanguage;
|
this.loanLanguage = loanLanguage;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getEtymologyType() {
|
public Integer getEtymologyType() {
|
||||||
return this.etymologyType;
|
return this.etymologyType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEtymologyType(java.lang.Integer etymologyType) {
|
public void setEtymologyType(Integer etymologyType) {
|
||||||
this.etymologyType = etymologyType;
|
this.etymologyType = etymologyType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getDerivation() {
|
public String getDerivation() {
|
||||||
return this.derivation;
|
return this.derivation;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDerivation(java.lang.String derivation) {
|
public void setDerivation(String derivation) {
|
||||||
this.derivation = derivation;
|
this.derivation = derivation;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getEtymologyDescription() {
|
public String getEtymologyDescription() {
|
||||||
return this.etymologyDescription;
|
return this.etymologyDescription;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEtymologyDescription(java.lang.String etymologyDescription) {
|
public void setEtymologyDescription(String etymologyDescription) {
|
||||||
this.etymologyDescription = etymologyDescription;
|
this.etymologyDescription = etymologyDescription;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getTranslationOf() {
|
public Integer getTranslationOf() {
|
||||||
return this.translationOf;
|
return this.translationOf;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslationOf(java.lang.Integer translationOf) {
|
public void setTranslationOf(Integer translationOf) {
|
||||||
this.translationOf = translationOf;
|
this.translationOf = translationOf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -125,11 +113,11 @@ abstract public class BaseEtymology extends LexComponent implements org.thdl.lex
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getTranslations() {
|
public List getTranslations() {
|
||||||
return this.translations;
|
return this.translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslations(java.util.List translations) {
|
public void setTranslations(List translations) {
|
||||||
this.translations = translations;
|
this.translations = translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,25 +8,21 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseGloss extends LexComponent implements org.thdl.lex.component.IGloss,Serializable {
|
abstract public class BaseGloss extends LexComponent implements org.thdl.lex.component.IGloss,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer precedence;
|
private String gloss;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String gloss;
|
private String translation;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.String translation;
|
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseGloss(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String gloss, java.lang.String translation, org.thdl.lex.component.ILexComponent parent) {
|
public BaseGloss(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String gloss, String translation, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.gloss = gloss;
|
this.gloss = gloss;
|
||||||
this.translation = translation;
|
this.translation = translation;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
@ -37,39 +33,31 @@ abstract public class BaseGloss extends LexComponent implements org.thdl.lex.com
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseGloss(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
public BaseGloss(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getGloss() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getGloss() {
|
|
||||||
return this.gloss;
|
return this.gloss;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setGloss(java.lang.String gloss) {
|
public void setGloss(String gloss) {
|
||||||
this.gloss = gloss;
|
this.gloss = gloss;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getTranslation() {
|
public String getTranslation() {
|
||||||
return this.translation;
|
return this.translation;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslation(java.lang.String translation) {
|
public void setTranslation(String translation) {
|
||||||
this.translation = translation;
|
this.translation = translation;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,22 +8,18 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseGrammaticalFunction extends LexComponent implements org.thdl.lex.component.IFunction,Serializable {
|
abstract public class BaseGrammaticalFunction extends LexComponent implements org.thdl.lex.component.IFunction,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer precedence;
|
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer function;
|
private Integer function;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseGrammaticalFunction(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.Integer function, org.thdl.lex.component.ILexComponent parent) {
|
public BaseGrammaticalFunction(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, Integer function, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.function = function;
|
this.function = function;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
@ -33,32 +29,24 @@ abstract public class BaseGrammaticalFunction extends LexComponent implements or
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseGrammaticalFunction(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer function) {
|
public BaseGrammaticalFunction(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer function) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.function = function;
|
this.function = function;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public Integer getFunction() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.Integer getFunction() {
|
|
||||||
return this.function;
|
return this.function;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setFunction(java.lang.Integer function) {
|
public void setFunction(Integer function) {
|
||||||
this.function = function;
|
this.function = function;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,22 +8,18 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseKeyword extends LexComponent implements org.thdl.lex.component.IKeyword,Serializable {
|
abstract public class BaseKeyword extends LexComponent implements org.thdl.lex.component.IKeyword,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer precedence;
|
private String keyword;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.String keyword;
|
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseKeyword(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String keyword, org.thdl.lex.component.ILexComponent parent) {
|
public BaseKeyword(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String keyword, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.keyword = keyword;
|
this.keyword = keyword;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
@ -33,31 +29,23 @@ abstract public class BaseKeyword extends LexComponent implements org.thdl.lex.c
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseKeyword(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
public BaseKeyword(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getKeyword() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getKeyword() {
|
|
||||||
return this.keyword;
|
return this.keyword;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setKeyword(java.lang.String keyword) {
|
public void setKeyword(String keyword) {
|
||||||
this.keyword = keyword;
|
this.keyword = keyword;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,10 +10,10 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseLexComponent implements org.thdl.lex.component.ILexComponent,Serializable {
|
abstract public class BaseLexComponent implements org.thdl.lex.component.ILexComponent,Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Integer metaId;
|
private Integer metaId;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Boolean deleted;
|
private Boolean deleted;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private List analyticalNotes;
|
private List analyticalNotes;
|
||||||
|
@ -22,7 +22,7 @@ abstract public class BaseLexComponent implements org.thdl.lex.component.ILexCom
|
||||||
private org.thdl.lex.component.Meta meta;
|
private org.thdl.lex.component.Meta meta;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseLexComponent(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
public BaseLexComponent(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
||||||
this.deleted = deleted;
|
this.deleted = deleted;
|
||||||
this.analyticalNotes = analyticalNotes;
|
this.analyticalNotes = analyticalNotes;
|
||||||
this.meta = meta;
|
this.meta = meta;
|
||||||
|
@ -32,27 +32,27 @@ abstract public class BaseLexComponent implements org.thdl.lex.component.ILexCom
|
||||||
public BaseLexComponent() {
|
public BaseLexComponent() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getMetaId() {
|
public Integer getMetaId() {
|
||||||
return this.metaId;
|
return this.metaId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setMetaId(java.lang.Integer metaId) {
|
public void setMetaId(Integer metaId) {
|
||||||
this.metaId = metaId;
|
this.metaId = metaId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Boolean getDeleted() {
|
public Boolean getDeleted() {
|
||||||
return this.deleted;
|
return this.deleted;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDeleted(java.lang.Boolean deleted) {
|
public void setDeleted(Boolean deleted) {
|
||||||
this.deleted = deleted;
|
this.deleted = deleted;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getAnalyticalNotes() {
|
public List getAnalyticalNotes() {
|
||||||
return this.analyticalNotes;
|
return this.analyticalNotes;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAnalyticalNotes(java.util.List analyticalNotes) {
|
public void setAnalyticalNotes(List analyticalNotes) {
|
||||||
this.analyticalNotes = analyticalNotes;
|
this.analyticalNotes = analyticalNotes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,46 +1,47 @@
|
||||||
package org.thdl.lex.component;
|
package org.thdl.lex.component;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.Date;
|
||||||
import org.apache.commons.lang.builder.ToStringBuilder;
|
import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
|
|
||||||
/** @author Hibernate CodeGenerator */
|
/** @author Hibernate CodeGenerator */
|
||||||
abstract public class BaseMeta implements Serializable {
|
abstract public class BaseMeta implements Serializable {
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer createdBy;
|
private Integer createdBy;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer modifiedBy;
|
private Integer modifiedBy;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer createdByProjSub;
|
private Integer createdByProjSub;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer modifiedByProjSub;
|
private Integer modifiedByProjSub;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.util.Date createdOn;
|
private Date createdOn;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.util.Date modifiedOn;
|
private Date modifiedOn;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer source;
|
private Integer source;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer language;
|
private Integer language;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer script;
|
private Integer script;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer dialect;
|
private Integer dialect;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String note;
|
private String note;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseMeta(java.lang.Integer createdBy, java.lang.Integer modifiedBy, java.lang.Integer createdByProjSub, java.lang.Integer modifiedByProjSub, java.util.Date createdOn, java.util.Date modifiedOn, java.lang.Integer source, java.lang.Integer language, java.lang.Integer script, java.lang.Integer dialect, java.lang.String note) {
|
public BaseMeta(Integer createdBy, Integer modifiedBy, Integer createdByProjSub, Integer modifiedByProjSub, Date createdOn, Date modifiedOn, Integer source, Integer language, Integer script, Integer dialect, String note) {
|
||||||
this.createdBy = createdBy;
|
this.createdBy = createdBy;
|
||||||
this.modifiedBy = modifiedBy;
|
this.modifiedBy = modifiedBy;
|
||||||
this.createdByProjSub = createdByProjSub;
|
this.createdByProjSub = createdByProjSub;
|
||||||
|
@ -59,7 +60,7 @@ abstract public class BaseMeta implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseMeta(java.lang.Integer createdBy, java.lang.Integer modifiedBy, java.lang.Integer createdByProjSub, java.lang.Integer modifiedByProjSub, java.lang.Integer source, java.lang.Integer language, java.lang.Integer script, java.lang.Integer dialect) {
|
public BaseMeta(Integer createdBy, Integer modifiedBy, Integer createdByProjSub, Integer modifiedByProjSub, Integer source, Integer language, Integer script, Integer dialect) {
|
||||||
this.createdBy = createdBy;
|
this.createdBy = createdBy;
|
||||||
this.modifiedBy = modifiedBy;
|
this.modifiedBy = modifiedBy;
|
||||||
this.createdByProjSub = createdByProjSub;
|
this.createdByProjSub = createdByProjSub;
|
||||||
|
@ -70,91 +71,91 @@ abstract public class BaseMeta implements Serializable {
|
||||||
this.dialect = dialect;
|
this.dialect = dialect;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getCreatedBy() {
|
public Integer getCreatedBy() {
|
||||||
return this.createdBy;
|
return this.createdBy;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCreatedBy(java.lang.Integer createdBy) {
|
public void setCreatedBy(Integer createdBy) {
|
||||||
this.createdBy = createdBy;
|
this.createdBy = createdBy;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getModifiedBy() {
|
public Integer getModifiedBy() {
|
||||||
return this.modifiedBy;
|
return this.modifiedBy;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setModifiedBy(java.lang.Integer modifiedBy) {
|
public void setModifiedBy(Integer modifiedBy) {
|
||||||
this.modifiedBy = modifiedBy;
|
this.modifiedBy = modifiedBy;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getCreatedByProjSub() {
|
public Integer getCreatedByProjSub() {
|
||||||
return this.createdByProjSub;
|
return this.createdByProjSub;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCreatedByProjSub(java.lang.Integer createdByProjSub) {
|
public void setCreatedByProjSub(Integer createdByProjSub) {
|
||||||
this.createdByProjSub = createdByProjSub;
|
this.createdByProjSub = createdByProjSub;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getModifiedByProjSub() {
|
public Integer getModifiedByProjSub() {
|
||||||
return this.modifiedByProjSub;
|
return this.modifiedByProjSub;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setModifiedByProjSub(java.lang.Integer modifiedByProjSub) {
|
public void setModifiedByProjSub(Integer modifiedByProjSub) {
|
||||||
this.modifiedByProjSub = modifiedByProjSub;
|
this.modifiedByProjSub = modifiedByProjSub;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.Date getCreatedOn() {
|
public Date getCreatedOn() {
|
||||||
return this.createdOn;
|
return this.createdOn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCreatedOn(java.util.Date createdOn) {
|
public void setCreatedOn(Date createdOn) {
|
||||||
this.createdOn = createdOn;
|
this.createdOn = createdOn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.Date getModifiedOn() {
|
public Date getModifiedOn() {
|
||||||
return this.modifiedOn;
|
return this.modifiedOn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setModifiedOn(java.util.Date modifiedOn) {
|
public void setModifiedOn(Date modifiedOn) {
|
||||||
this.modifiedOn = modifiedOn;
|
this.modifiedOn = modifiedOn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getSource() {
|
public Integer getSource() {
|
||||||
return this.source;
|
return this.source;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSource(java.lang.Integer source) {
|
public void setSource(Integer source) {
|
||||||
this.source = source;
|
this.source = source;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getLanguage() {
|
public Integer getLanguage() {
|
||||||
return this.language;
|
return this.language;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLanguage(java.lang.Integer language) {
|
public void setLanguage(Integer language) {
|
||||||
this.language = language;
|
this.language = language;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getScript() {
|
public Integer getScript() {
|
||||||
return this.script;
|
return this.script;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setScript(java.lang.Integer script) {
|
public void setScript(Integer script) {
|
||||||
this.script = script;
|
this.script = script;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getDialect() {
|
public Integer getDialect() {
|
||||||
return this.dialect;
|
return this.dialect;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDialect(java.lang.Integer dialect) {
|
public void setDialect(Integer dialect) {
|
||||||
this.dialect = dialect;
|
this.dialect = dialect;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getNote() {
|
public String getNote() {
|
||||||
return this.note;
|
return this.note;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setNote(java.lang.String note) {
|
public void setNote(String note) {
|
||||||
this.note = note;
|
this.note = note;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,16 +8,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseModelSentence extends LexComponent implements org.thdl.lex.component.IModelSentence,Serializable,org.thdl.lex.component.Translatable {
|
abstract public class BaseModelSentence extends LexComponent implements org.thdl.lex.component.IModelSentence,Serializable,org.thdl.lex.component.Translatable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer precedence;
|
private String modelSentence;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String modelSentence;
|
private Integer translationOf;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer translationOf;
|
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
@ -26,10 +23,9 @@ abstract public class BaseModelSentence extends LexComponent implements org.thdl
|
||||||
private List translations;
|
private List translations;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseModelSentence(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String modelSentence, java.lang.Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations) {
|
public BaseModelSentence(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String modelSentence, Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.modelSentence = modelSentence;
|
this.modelSentence = modelSentence;
|
||||||
this.translationOf = translationOf;
|
this.translationOf = translationOf;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
@ -41,40 +37,32 @@ abstract public class BaseModelSentence extends LexComponent implements org.thdl
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseModelSentence(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, List translations) {
|
public BaseModelSentence(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, List translations) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.translations = translations;
|
this.translations = translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getModelSentence() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getModelSentence() {
|
|
||||||
return this.modelSentence;
|
return this.modelSentence;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setModelSentence(java.lang.String modelSentence) {
|
public void setModelSentence(String modelSentence) {
|
||||||
this.modelSentence = modelSentence;
|
this.modelSentence = modelSentence;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getTranslationOf() {
|
public Integer getTranslationOf() {
|
||||||
return this.translationOf;
|
return this.translationOf;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslationOf(java.lang.Integer translationOf) {
|
public void setTranslationOf(Integer translationOf) {
|
||||||
this.translationOf = translationOf;
|
this.translationOf = translationOf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,11 +74,11 @@ abstract public class BaseModelSentence extends LexComponent implements org.thdl
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getTranslations() {
|
public List getTranslations() {
|
||||||
return this.translations;
|
return this.translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslations(java.util.List translations) {
|
public void setTranslations(List translations) {
|
||||||
this.translations = translations;
|
this.translations = translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,28 +5,25 @@ import java.util.List;
|
||||||
import org.apache.commons.lang.builder.ToStringBuilder;
|
import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
|
|
||||||
/** @author Hibernate CodeGenerator */
|
/** @author Hibernate CodeGenerator */
|
||||||
abstract public class BasePassage extends LexComponent implements org.thdl.lex.component.IPassage,Serializable,org.thdl.lex.component.Translatable {
|
abstract public class BasePassage extends LexComponent implements org.thdl.lex.component.IPassage,org.thdl.lex.component.Translatable,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer precedence;
|
private String literarySource;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String literarySource;
|
private String spelling;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String spelling;
|
private String pagination;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String pagination;
|
private String passage;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String passage;
|
private Integer translationOf;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer translationOf;
|
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
@ -35,10 +32,9 @@ abstract public class BasePassage extends LexComponent implements org.thdl.lex.c
|
||||||
private List translations;
|
private List translations;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BasePassage(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String literarySource, java.lang.String spelling, java.lang.String pagination, java.lang.String passage, java.lang.Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations) {
|
public BasePassage(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String literarySource, String spelling, String pagination, String passage, Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.literarySource = literarySource;
|
this.literarySource = literarySource;
|
||||||
this.spelling = spelling;
|
this.spelling = spelling;
|
||||||
this.pagination = pagination;
|
this.pagination = pagination;
|
||||||
|
@ -53,64 +49,56 @@ abstract public class BasePassage extends LexComponent implements org.thdl.lex.c
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BasePassage(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, List translations) {
|
public BasePassage(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, List translations) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.translations = translations;
|
this.translations = translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getLiterarySource() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getLiterarySource() {
|
|
||||||
return this.literarySource;
|
return this.literarySource;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLiterarySource(java.lang.String literarySource) {
|
public void setLiterarySource(String literarySource) {
|
||||||
this.literarySource = literarySource;
|
this.literarySource = literarySource;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getSpelling() {
|
public String getSpelling() {
|
||||||
return this.spelling;
|
return this.spelling;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSpelling(java.lang.String spelling) {
|
public void setSpelling(String spelling) {
|
||||||
this.spelling = spelling;
|
this.spelling = spelling;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getPagination() {
|
public String getPagination() {
|
||||||
return this.pagination;
|
return this.pagination;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPagination(java.lang.String pagination) {
|
public void setPagination(String pagination) {
|
||||||
this.pagination = pagination;
|
this.pagination = pagination;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getPassage() {
|
public String getPassage() {
|
||||||
return this.passage;
|
return this.passage;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPassage(java.lang.String passage) {
|
public void setPassage(String passage) {
|
||||||
this.passage = passage;
|
this.passage = passage;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getTranslationOf() {
|
public Integer getTranslationOf() {
|
||||||
return this.translationOf;
|
return this.translationOf;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslationOf(java.lang.Integer translationOf) {
|
public void setTranslationOf(Integer translationOf) {
|
||||||
this.translationOf = translationOf;
|
this.translationOf = translationOf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,11 +110,11 @@ abstract public class BasePassage extends LexComponent implements org.thdl.lex.c
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getTranslations() {
|
public List getTranslations() {
|
||||||
return this.translations;
|
return this.translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslations(java.util.List translations) {
|
public void setTranslations(List translations) {
|
||||||
this.translations = translations;
|
this.translations = translations;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,25 +8,21 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BasePronunciation extends LexComponent implements org.thdl.lex.component.IPronunciation,Serializable {
|
abstract public class BasePronunciation extends LexComponent implements org.thdl.lex.component.IPronunciation,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer precedence;
|
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String phonetics;
|
private String phonetics;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer phoneticsType;
|
private Integer phoneticsType;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BasePronunciation(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String phonetics, java.lang.Integer phoneticsType, org.thdl.lex.component.ILexComponent parent) {
|
public BasePronunciation(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String phonetics, Integer phoneticsType, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.phonetics = phonetics;
|
this.phonetics = phonetics;
|
||||||
this.phoneticsType = phoneticsType;
|
this.phoneticsType = phoneticsType;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
@ -37,41 +33,33 @@ abstract public class BasePronunciation extends LexComponent implements org.thdl
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BasePronunciation(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.String phonetics, java.lang.Integer phoneticsType) {
|
public BasePronunciation(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, String phonetics, Integer phoneticsType) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.phonetics = phonetics;
|
this.phonetics = phonetics;
|
||||||
this.phoneticsType = phoneticsType;
|
this.phoneticsType = phoneticsType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getPhonetics() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getPhonetics() {
|
|
||||||
return this.phonetics;
|
return this.phonetics;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPhonetics(java.lang.String phonetics) {
|
public void setPhonetics(String phonetics) {
|
||||||
this.phonetics = phonetics;
|
this.phonetics = phonetics;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPhoneticsType() {
|
public Integer getPhoneticsType() {
|
||||||
return this.phoneticsType;
|
return this.phoneticsType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPhoneticsType(java.lang.Integer phoneticsType) {
|
public void setPhoneticsType(Integer phoneticsType) {
|
||||||
this.phoneticsType = phoneticsType;
|
this.phoneticsType = phoneticsType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,25 +8,21 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseRelatedTerm extends LexComponent implements Serializable,org.thdl.lex.component.IRelatedTerm {
|
abstract public class BaseRelatedTerm extends LexComponent implements Serializable,org.thdl.lex.component.IRelatedTerm {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer precedence;
|
private String relatedTerm;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.String relatedTerm;
|
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer relatedTermType;
|
private Integer relatedTermType;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseRelatedTerm(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String relatedTerm, java.lang.Integer relatedTermType, org.thdl.lex.component.ILexComponent parent) {
|
public BaseRelatedTerm(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String relatedTerm, Integer relatedTermType, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.relatedTerm = relatedTerm;
|
this.relatedTerm = relatedTerm;
|
||||||
this.relatedTermType = relatedTermType;
|
this.relatedTermType = relatedTermType;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
@ -37,40 +33,32 @@ abstract public class BaseRelatedTerm extends LexComponent implements Serializab
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseRelatedTerm(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer relatedTermType) {
|
public BaseRelatedTerm(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer relatedTermType) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.relatedTermType = relatedTermType;
|
this.relatedTermType = relatedTermType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getRelatedTerm() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getRelatedTerm() {
|
|
||||||
return this.relatedTerm;
|
return this.relatedTerm;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRelatedTerm(java.lang.String relatedTerm) {
|
public void setRelatedTerm(String relatedTerm) {
|
||||||
this.relatedTerm = relatedTerm;
|
this.relatedTerm = relatedTerm;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getRelatedTermType() {
|
public Integer getRelatedTermType() {
|
||||||
return this.relatedTermType;
|
return this.relatedTermType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRelatedTermType(java.lang.Integer relatedTermType) {
|
public void setRelatedTermType(Integer relatedTermType) {
|
||||||
this.relatedTermType = relatedTermType;
|
this.relatedTermType = relatedTermType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,22 +8,18 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseSpeechRegister extends LexComponent implements org.thdl.lex.component.IRegister,Serializable {
|
abstract public class BaseSpeechRegister extends LexComponent implements org.thdl.lex.component.IRegister,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer precedence;
|
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer register;
|
private Integer register;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseSpeechRegister(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.Integer register, org.thdl.lex.component.ILexComponent parent) {
|
public BaseSpeechRegister(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, Integer register, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.register = register;
|
this.register = register;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
@ -33,32 +29,24 @@ abstract public class BaseSpeechRegister extends LexComponent implements org.thd
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseSpeechRegister(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer register) {
|
public BaseSpeechRegister(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer register) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.register = register;
|
this.register = register;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public Integer getRegister() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.Integer getRegister() {
|
|
||||||
return this.register;
|
return this.register;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRegister(java.lang.Integer register) {
|
public void setRegister(Integer register) {
|
||||||
this.register = register;
|
this.register = register;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,25 +8,21 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseSpelling extends LexComponent implements Serializable,org.thdl.lex.component.ISpelling {
|
abstract public class BaseSpelling extends LexComponent implements Serializable,org.thdl.lex.component.ISpelling {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer precedence;
|
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String spelling;
|
private String spelling;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer spellingType;
|
private Integer spellingType;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseSpelling(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String spelling, java.lang.Integer spellingType, org.thdl.lex.component.ILexComponent parent) {
|
public BaseSpelling(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String spelling, Integer spellingType, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.spelling = spelling;
|
this.spelling = spelling;
|
||||||
this.spellingType = spellingType;
|
this.spellingType = spellingType;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
@ -37,41 +33,33 @@ abstract public class BaseSpelling extends LexComponent implements Serializable,
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseSpelling(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.String spelling, java.lang.Integer spellingType) {
|
public BaseSpelling(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, String spelling, Integer spellingType) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.spelling = spelling;
|
this.spelling = spelling;
|
||||||
this.spellingType = spellingType;
|
this.spellingType = spellingType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getSpelling() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getSpelling() {
|
|
||||||
return this.spelling;
|
return this.spelling;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSpelling(java.lang.String spelling) {
|
public void setSpelling(String spelling) {
|
||||||
this.spelling = spelling;
|
this.spelling = spelling;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getSpellingType() {
|
public Integer getSpellingType() {
|
||||||
return this.spellingType;
|
return this.spellingType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSpellingType(java.lang.Integer spellingType) {
|
public void setSpellingType(Integer spellingType) {
|
||||||
this.spellingType = spellingType;
|
this.spellingType = spellingType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,451 +4,179 @@ import java.io.Serializable;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import org.apache.commons.lang.builder.ToStringBuilder;
|
import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
|
|
||||||
|
/** @author Hibernate CodeGenerator */
|
||||||
/**
|
abstract public class BaseSubdefinition extends LexComponent implements org.thdl.lex.component.ISubdefinition,org.thdl.lex.component.Translatable, org.thdl.lex.component.LexComponentNode,Serializable {
|
||||||
* @author Hibernate CodeGenerator
|
|
||||||
* @created December 20, 2003
|
/** nullable persistent field */
|
||||||
*/
|
private Integer parentId;
|
||||||
public abstract class BaseSubdefinition extends LexComponent implements org.thdl.lex.component.ISubdefinition, org.thdl.lex.component.Translatable, org.thdl.lex.component.LexComponentNode, Serializable
|
|
||||||
{
|
/** nullable persistent field */
|
||||||
|
private String subdefinition;
|
||||||
/**
|
|
||||||
* nullable persistent field
|
/** nullable persistent field */
|
||||||
*/
|
private Integer translationOf;
|
||||||
private java.lang.Integer parentId;
|
|
||||||
|
/** nullable persistent field */
|
||||||
/**
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
* nullable persistent field
|
|
||||||
*/
|
/** persistent field */
|
||||||
private java.lang.Integer precedence;
|
private List translations;
|
||||||
|
|
||||||
/**
|
/** persistent field */
|
||||||
* nullable persistent field
|
private List glosses;
|
||||||
*/
|
|
||||||
private java.lang.String subdefinition;
|
/** persistent field */
|
||||||
|
private List keywords;
|
||||||
/**
|
|
||||||
* nullable persistent field
|
/** persistent field */
|
||||||
*/
|
private List modelSentences;
|
||||||
private java.lang.Integer translationOf;
|
|
||||||
|
/** persistent field */
|
||||||
/**
|
private List translationEquivalents;
|
||||||
* nullable persistent field
|
|
||||||
*/
|
/** persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private List relatedTerms;
|
||||||
|
|
||||||
/**
|
/** persistent field */
|
||||||
* persistent field
|
private List passages;
|
||||||
*/
|
|
||||||
private List translations;
|
/** persistent field */
|
||||||
|
private List registers;
|
||||||
/**
|
|
||||||
* persistent field
|
/** full constructor */
|
||||||
*/
|
public BaseSubdefinition(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String subdefinition, Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers) {
|
||||||
private List glosses;
|
super(deleted, analyticalNotes, meta);
|
||||||
|
this.parentId = parentId;
|
||||||
/**
|
this.subdefinition = subdefinition;
|
||||||
* persistent field
|
this.translationOf = translationOf;
|
||||||
*/
|
this.parent = parent;
|
||||||
private List keywords;
|
this.translations = translations;
|
||||||
|
this.glosses = glosses;
|
||||||
/**
|
this.keywords = keywords;
|
||||||
* persistent field
|
this.modelSentences = modelSentences;
|
||||||
*/
|
this.translationEquivalents = translationEquivalents;
|
||||||
private List modelSentences;
|
this.relatedTerms = relatedTerms;
|
||||||
|
this.passages = passages;
|
||||||
/**
|
this.registers = registers;
|
||||||
* persistent field
|
}
|
||||||
*/
|
|
||||||
private List translationEquivalents;
|
/** default constructor */
|
||||||
|
public BaseSubdefinition() {
|
||||||
/**
|
}
|
||||||
* persistent field
|
|
||||||
*/
|
/** minimal constructor */
|
||||||
private List relatedTerms;
|
public BaseSubdefinition(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, List translations, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers) {
|
||||||
|
super(deleted, analyticalNotes, meta);
|
||||||
/**
|
this.translations = translations;
|
||||||
* persistent field
|
this.glosses = glosses;
|
||||||
*/
|
this.keywords = keywords;
|
||||||
private List passages;
|
this.modelSentences = modelSentences;
|
||||||
|
this.translationEquivalents = translationEquivalents;
|
||||||
/**
|
this.relatedTerms = relatedTerms;
|
||||||
* persistent field
|
this.passages = passages;
|
||||||
*/
|
this.registers = registers;
|
||||||
private List registers;
|
}
|
||||||
|
|
||||||
|
public Integer getParentId() {
|
||||||
/**
|
return this.parentId;
|
||||||
* full constructor
|
}
|
||||||
*
|
|
||||||
* @param deleted Description of the Parameter
|
public void setParentId(Integer parentId) {
|
||||||
* @param analyticalNotes Description of the Parameter
|
this.parentId = parentId;
|
||||||
* @param meta Description of the Parameter
|
}
|
||||||
* @param parentId Description of the Parameter
|
|
||||||
* @param precedence Description of the Parameter
|
public String getSubdefinition() {
|
||||||
* @param subdefinition Description of the Parameter
|
return this.subdefinition;
|
||||||
* @param translationOf Description of the Parameter
|
}
|
||||||
* @param parent Description of the Parameter
|
|
||||||
* @param translations Description of the Parameter
|
public void setSubdefinition(String subdefinition) {
|
||||||
* @param glosses Description of the Parameter
|
this.subdefinition = subdefinition;
|
||||||
* @param keywords Description of the Parameter
|
}
|
||||||
* @param modelSentences Description of the Parameter
|
|
||||||
* @param translationEquivalents Description of the Parameter
|
public Integer getTranslationOf() {
|
||||||
* @param relatedTerms Description of the Parameter
|
return this.translationOf;
|
||||||
* @param passages Description of the Parameter
|
}
|
||||||
* @param registers Description of the Parameter
|
|
||||||
*/
|
public void setTranslationOf(Integer translationOf) {
|
||||||
public BaseSubdefinition( java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String subdefinition, java.lang.Integer translationOf, org.thdl.lex.component.ILexComponent parent, List translations, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers )
|
this.translationOf = translationOf;
|
||||||
{
|
}
|
||||||
super( deleted, analyticalNotes, meta );
|
|
||||||
this.parentId = parentId;
|
public org.thdl.lex.component.ILexComponent getParent() {
|
||||||
this.precedence = precedence;
|
return this.parent;
|
||||||
this.subdefinition = subdefinition;
|
}
|
||||||
this.translationOf = translationOf;
|
|
||||||
this.parent = parent;
|
public void setParent(org.thdl.lex.component.ILexComponent parent) {
|
||||||
this.translations = translations;
|
this.parent = parent;
|
||||||
this.glosses = glosses;
|
}
|
||||||
this.keywords = keywords;
|
|
||||||
this.modelSentences = modelSentences;
|
public List getTranslations() {
|
||||||
this.translationEquivalents = translationEquivalents;
|
return this.translations;
|
||||||
this.relatedTerms = relatedTerms;
|
}
|
||||||
this.passages = passages;
|
|
||||||
this.registers = registers;
|
public void setTranslations(List translations) {
|
||||||
}
|
this.translations = translations;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
public List getGlosses() {
|
||||||
* default constructor
|
return this.glosses;
|
||||||
*/
|
}
|
||||||
public BaseSubdefinition() { }
|
|
||||||
|
public void setGlosses(List glosses) {
|
||||||
|
this.glosses = glosses;
|
||||||
/**
|
}
|
||||||
* minimal constructor
|
|
||||||
*
|
public List getKeywords() {
|
||||||
* @param deleted Description of the Parameter
|
return this.keywords;
|
||||||
* @param analyticalNotes Description of the Parameter
|
}
|
||||||
* @param meta Description of the Parameter
|
|
||||||
* @param translations Description of the Parameter
|
public void setKeywords(List keywords) {
|
||||||
* @param glosses Description of the Parameter
|
this.keywords = keywords;
|
||||||
* @param keywords Description of the Parameter
|
}
|
||||||
* @param modelSentences Description of the Parameter
|
|
||||||
* @param translationEquivalents Description of the Parameter
|
public List getModelSentences() {
|
||||||
* @param relatedTerms Description of the Parameter
|
return this.modelSentences;
|
||||||
* @param passages Description of the Parameter
|
}
|
||||||
* @param registers Description of the Parameter
|
|
||||||
*/
|
public void setModelSentences(List modelSentences) {
|
||||||
public BaseSubdefinition( java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, List translations, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers )
|
this.modelSentences = modelSentences;
|
||||||
{
|
}
|
||||||
super( deleted, analyticalNotes, meta );
|
|
||||||
this.translations = translations;
|
public List getTranslationEquivalents() {
|
||||||
this.glosses = glosses;
|
return this.translationEquivalents;
|
||||||
this.keywords = keywords;
|
}
|
||||||
this.modelSentences = modelSentences;
|
|
||||||
this.translationEquivalents = translationEquivalents;
|
public void setTranslationEquivalents(List translationEquivalents) {
|
||||||
this.relatedTerms = relatedTerms;
|
this.translationEquivalents = translationEquivalents;
|
||||||
this.passages = passages;
|
}
|
||||||
this.registers = registers;
|
|
||||||
}
|
public List getRelatedTerms() {
|
||||||
|
return this.relatedTerms;
|
||||||
|
}
|
||||||
/**
|
|
||||||
* Gets the parentId attribute of the BaseSubdefinition object
|
public void setRelatedTerms(List relatedTerms) {
|
||||||
*
|
this.relatedTerms = relatedTerms;
|
||||||
* @return The parentId value
|
}
|
||||||
*/
|
|
||||||
public java.lang.Integer getParentId()
|
public List getPassages() {
|
||||||
{
|
return this.passages;
|
||||||
return this.parentId;
|
}
|
||||||
}
|
|
||||||
|
public void setPassages(List passages) {
|
||||||
|
this.passages = passages;
|
||||||
/**
|
}
|
||||||
* Sets the parentId attribute of the BaseSubdefinition object
|
|
||||||
*
|
public List getRegisters() {
|
||||||
* @param parentId The new parentId value
|
return this.registers;
|
||||||
*/
|
}
|
||||||
public void setParentId( java.lang.Integer parentId )
|
|
||||||
{
|
public void setRegisters(List registers) {
|
||||||
this.parentId = parentId;
|
this.registers = registers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String toString() {
|
||||||
/**
|
return new ToStringBuilder(this)
|
||||||
* Gets the precedence attribute of the BaseSubdefinition object
|
.append("metaId", getMetaId())
|
||||||
*
|
.toString();
|
||||||
* @return The precedence value
|
}
|
||||||
*/
|
|
||||||
public java.lang.Integer getPrecedence()
|
|
||||||
{
|
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the precedence attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param precedence The new precedence value
|
|
||||||
*/
|
|
||||||
public void setPrecedence( java.lang.Integer precedence )
|
|
||||||
{
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the subdefinition attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The subdefinition value
|
|
||||||
*/
|
|
||||||
public java.lang.String getSubdefinition()
|
|
||||||
{
|
|
||||||
return this.subdefinition;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the subdefinition attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param subdefinition The new subdefinition value
|
|
||||||
*/
|
|
||||||
public void setSubdefinition( java.lang.String subdefinition )
|
|
||||||
{
|
|
||||||
this.subdefinition = subdefinition;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the translationOf attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The translationOf value
|
|
||||||
*/
|
|
||||||
public java.lang.Integer getTranslationOf()
|
|
||||||
{
|
|
||||||
return this.translationOf;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the translationOf attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param translationOf The new translationOf value
|
|
||||||
*/
|
|
||||||
public void setTranslationOf( java.lang.Integer translationOf )
|
|
||||||
{
|
|
||||||
this.translationOf = translationOf;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the parent attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The parent value
|
|
||||||
*/
|
|
||||||
public org.thdl.lex.component.ILexComponent getParent()
|
|
||||||
{
|
|
||||||
return this.parent;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the parent attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param parent The new parent value
|
|
||||||
*/
|
|
||||||
public void setParent( org.thdl.lex.component.ILexComponent parent )
|
|
||||||
{
|
|
||||||
this.parent = parent;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the translations attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The translations value
|
|
||||||
*/
|
|
||||||
public java.util.List getTranslations()
|
|
||||||
{
|
|
||||||
return this.translations;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the translations attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param translations The new translations value
|
|
||||||
*/
|
|
||||||
public void setTranslations( java.util.List translations )
|
|
||||||
{
|
|
||||||
this.translations = translations;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the glosses attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The glosses value
|
|
||||||
*/
|
|
||||||
public java.util.List getGlosses()
|
|
||||||
{
|
|
||||||
return this.glosses;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the glosses attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param glosses The new glosses value
|
|
||||||
*/
|
|
||||||
public void setGlosses( java.util.List glosses )
|
|
||||||
{
|
|
||||||
this.glosses = glosses;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the keywords attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The keywords value
|
|
||||||
*/
|
|
||||||
public java.util.List getKeywords()
|
|
||||||
{
|
|
||||||
return this.keywords;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the keywords attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param keywords The new keywords value
|
|
||||||
*/
|
|
||||||
public void setKeywords( java.util.List keywords )
|
|
||||||
{
|
|
||||||
this.keywords = keywords;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the modelSentences attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The modelSentences value
|
|
||||||
*/
|
|
||||||
public java.util.List getModelSentences()
|
|
||||||
{
|
|
||||||
return this.modelSentences;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the modelSentences attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param modelSentences The new modelSentences value
|
|
||||||
*/
|
|
||||||
public void setModelSentences( java.util.List modelSentences )
|
|
||||||
{
|
|
||||||
this.modelSentences = modelSentences;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the translationEquivalents attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The translationEquivalents value
|
|
||||||
*/
|
|
||||||
public java.util.List getTranslationEquivalents()
|
|
||||||
{
|
|
||||||
return this.translationEquivalents;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the translationEquivalents attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param translationEquivalents The new translationEquivalents value
|
|
||||||
*/
|
|
||||||
public void setTranslationEquivalents( java.util.List translationEquivalents )
|
|
||||||
{
|
|
||||||
this.translationEquivalents = translationEquivalents;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the relatedTerms attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The relatedTerms value
|
|
||||||
*/
|
|
||||||
public java.util.List getRelatedTerms()
|
|
||||||
{
|
|
||||||
return this.relatedTerms;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the relatedTerms attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param relatedTerms The new relatedTerms value
|
|
||||||
*/
|
|
||||||
public void setRelatedTerms( java.util.List relatedTerms )
|
|
||||||
{
|
|
||||||
this.relatedTerms = relatedTerms;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the passages attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The passages value
|
|
||||||
*/
|
|
||||||
public java.util.List getPassages()
|
|
||||||
{
|
|
||||||
return this.passages;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the passages attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param passages The new passages value
|
|
||||||
*/
|
|
||||||
public void setPassages( java.util.List passages )
|
|
||||||
{
|
|
||||||
this.passages = passages;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the registers attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @return The registers value
|
|
||||||
*/
|
|
||||||
public java.util.List getRegisters()
|
|
||||||
{
|
|
||||||
return this.registers;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the registers attribute of the BaseSubdefinition object
|
|
||||||
*
|
|
||||||
* @param registers The new registers value
|
|
||||||
*/
|
|
||||||
public void setRegisters( java.util.List registers )
|
|
||||||
{
|
|
||||||
this.registers = registers;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Description of the Method
|
|
||||||
*
|
|
||||||
* @return Description of the Return Value
|
|
||||||
*/
|
|
||||||
public String toString()
|
|
||||||
{
|
|
||||||
return new ToStringBuilder( this )
|
|
||||||
.append( "metaId", getMetaId() )
|
|
||||||
.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,10 +8,7 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseTerm extends LexComponent implements org.thdl.lex.component.ITerm,Serializable,org.thdl.lex.component.LexComponentNode {
|
abstract public class BaseTerm extends LexComponent implements org.thdl.lex.component.ITerm,Serializable,org.thdl.lex.component.LexComponentNode {
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String term;
|
private String term;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer precedence;
|
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private List pronunciations;
|
private List pronunciations;
|
||||||
|
@ -56,10 +53,9 @@ abstract public class BaseTerm extends LexComponent implements org.thdl.lex.comp
|
||||||
private List registers;
|
private List registers;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseTerm(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.String term, java.lang.Integer precedence, List pronunciations, List etymologies, List spellings, List functions, List encyclopediaArticles, List transitionalData, List definitions, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers) {
|
public BaseTerm(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, String term, List pronunciations, List etymologies, List spellings, List functions, List encyclopediaArticles, List transitionalData, List definitions, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.term = term;
|
this.term = term;
|
||||||
this.precedence = precedence;
|
|
||||||
this.pronunciations = pronunciations;
|
this.pronunciations = pronunciations;
|
||||||
this.etymologies = etymologies;
|
this.etymologies = etymologies;
|
||||||
this.spellings = spellings;
|
this.spellings = spellings;
|
||||||
|
@ -80,151 +76,123 @@ abstract public class BaseTerm extends LexComponent implements org.thdl.lex.comp
|
||||||
public BaseTerm() {
|
public BaseTerm() {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
public String getTerm() {
|
||||||
public BaseTerm(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.String term, List pronunciations, List etymologies, List spellings, List functions, List encyclopediaArticles, List transitionalData, List definitions, List glosses, List keywords, List modelSentences, List translationEquivalents, List relatedTerms, List passages, List registers) {
|
|
||||||
super(deleted, analyticalNotes, meta);
|
|
||||||
this.term = term;
|
|
||||||
this.pronunciations = pronunciations;
|
|
||||||
this.etymologies = etymologies;
|
|
||||||
this.spellings = spellings;
|
|
||||||
this.functions = functions;
|
|
||||||
this.encyclopediaArticles = encyclopediaArticles;
|
|
||||||
this.transitionalData = transitionalData;
|
|
||||||
this.definitions = definitions;
|
|
||||||
this.glosses = glosses;
|
|
||||||
this.keywords = keywords;
|
|
||||||
this.modelSentences = modelSentences;
|
|
||||||
this.translationEquivalents = translationEquivalents;
|
|
||||||
this.relatedTerms = relatedTerms;
|
|
||||||
this.passages = passages;
|
|
||||||
this.registers = registers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getTerm() {
|
|
||||||
return this.term;
|
return this.term;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTerm(java.lang.String term) {
|
public void setTerm(String term) {
|
||||||
this.term = term;
|
this.term = term;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public List getPronunciations() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.util.List getPronunciations() {
|
|
||||||
return this.pronunciations;
|
return this.pronunciations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPronunciations(java.util.List pronunciations) {
|
public void setPronunciations(List pronunciations) {
|
||||||
this.pronunciations = pronunciations;
|
this.pronunciations = pronunciations;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getEtymologies() {
|
public List getEtymologies() {
|
||||||
return this.etymologies;
|
return this.etymologies;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEtymologies(java.util.List etymologies) {
|
public void setEtymologies(List etymologies) {
|
||||||
this.etymologies = etymologies;
|
this.etymologies = etymologies;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getSpellings() {
|
public List getSpellings() {
|
||||||
return this.spellings;
|
return this.spellings;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSpellings(java.util.List spellings) {
|
public void setSpellings(List spellings) {
|
||||||
this.spellings = spellings;
|
this.spellings = spellings;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getFunctions() {
|
public List getFunctions() {
|
||||||
return this.functions;
|
return this.functions;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setFunctions(java.util.List functions) {
|
public void setFunctions(List functions) {
|
||||||
this.functions = functions;
|
this.functions = functions;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getEncyclopediaArticles() {
|
public List getEncyclopediaArticles() {
|
||||||
return this.encyclopediaArticles;
|
return this.encyclopediaArticles;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEncyclopediaArticles(java.util.List encyclopediaArticles) {
|
public void setEncyclopediaArticles(List encyclopediaArticles) {
|
||||||
this.encyclopediaArticles = encyclopediaArticles;
|
this.encyclopediaArticles = encyclopediaArticles;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getTransitionalData() {
|
public List getTransitionalData() {
|
||||||
return this.transitionalData;
|
return this.transitionalData;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTransitionalData(java.util.List transitionalData) {
|
public void setTransitionalData(List transitionalData) {
|
||||||
this.transitionalData = transitionalData;
|
this.transitionalData = transitionalData;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getDefinitions() {
|
public List getDefinitions() {
|
||||||
return this.definitions;
|
return this.definitions;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDefinitions(java.util.List definitions) {
|
public void setDefinitions(List definitions) {
|
||||||
this.definitions = definitions;
|
this.definitions = definitions;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getGlosses() {
|
public List getGlosses() {
|
||||||
return this.glosses;
|
return this.glosses;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setGlosses(java.util.List glosses) {
|
public void setGlosses(List glosses) {
|
||||||
this.glosses = glosses;
|
this.glosses = glosses;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getKeywords() {
|
public List getKeywords() {
|
||||||
return this.keywords;
|
return this.keywords;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setKeywords(java.util.List keywords) {
|
public void setKeywords(List keywords) {
|
||||||
this.keywords = keywords;
|
this.keywords = keywords;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getModelSentences() {
|
public List getModelSentences() {
|
||||||
return this.modelSentences;
|
return this.modelSentences;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setModelSentences(java.util.List modelSentences) {
|
public void setModelSentences(List modelSentences) {
|
||||||
this.modelSentences = modelSentences;
|
this.modelSentences = modelSentences;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getTranslationEquivalents() {
|
public List getTranslationEquivalents() {
|
||||||
return this.translationEquivalents;
|
return this.translationEquivalents;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslationEquivalents(java.util.List translationEquivalents) {
|
public void setTranslationEquivalents(List translationEquivalents) {
|
||||||
this.translationEquivalents = translationEquivalents;
|
this.translationEquivalents = translationEquivalents;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getRelatedTerms() {
|
public List getRelatedTerms() {
|
||||||
return this.relatedTerms;
|
return this.relatedTerms;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRelatedTerms(java.util.List relatedTerms) {
|
public void setRelatedTerms(List relatedTerms) {
|
||||||
this.relatedTerms = relatedTerms;
|
this.relatedTerms = relatedTerms;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getPassages() {
|
public List getPassages() {
|
||||||
return this.passages;
|
return this.passages;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPassages(java.util.List passages) {
|
public void setPassages(List passages) {
|
||||||
this.passages = passages;
|
this.passages = passages;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.List getRegisters() {
|
public List getRegisters() {
|
||||||
return this.registers;
|
return this.registers;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRegisters(java.util.List registers) {
|
public void setRegisters(List registers) {
|
||||||
this.registers = registers;
|
this.registers = registers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,28 +8,24 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseTransitionalData extends LexComponent implements org.thdl.lex.component.ITransitionalData,Serializable {
|
abstract public class BaseTransitionalData extends LexComponent implements org.thdl.lex.component.ITransitionalData,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer precedence;
|
private Integer transitionalDataLabel;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.Integer transitionalDataLabel;
|
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String forPublicConsumption;
|
private String forPublicConsumption;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String transitionalDataText;
|
private String transitionalDataText;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseTransitionalData(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.Integer transitionalDataLabel, java.lang.String forPublicConsumption, java.lang.String transitionalDataText, org.thdl.lex.component.ILexComponent parent) {
|
public BaseTransitionalData(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, Integer transitionalDataLabel, String forPublicConsumption, String transitionalDataText, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.transitionalDataLabel = transitionalDataLabel;
|
this.transitionalDataLabel = transitionalDataLabel;
|
||||||
this.forPublicConsumption = forPublicConsumption;
|
this.forPublicConsumption = forPublicConsumption;
|
||||||
this.transitionalDataText = transitionalDataText;
|
this.transitionalDataText = transitionalDataText;
|
||||||
|
@ -41,48 +37,40 @@ abstract public class BaseTransitionalData extends LexComponent implements org.t
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseTransitionalData(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.String forPublicConsumption) {
|
public BaseTransitionalData(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, String forPublicConsumption) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.forPublicConsumption = forPublicConsumption;
|
this.forPublicConsumption = forPublicConsumption;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public Integer getTransitionalDataLabel() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.Integer getTransitionalDataLabel() {
|
|
||||||
return this.transitionalDataLabel;
|
return this.transitionalDataLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTransitionalDataLabel(java.lang.Integer transitionalDataLabel) {
|
public void setTransitionalDataLabel(Integer transitionalDataLabel) {
|
||||||
this.transitionalDataLabel = transitionalDataLabel;
|
this.transitionalDataLabel = transitionalDataLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getForPublicConsumption() {
|
public String getForPublicConsumption() {
|
||||||
return this.forPublicConsumption;
|
return this.forPublicConsumption;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setForPublicConsumption(java.lang.String forPublicConsumption) {
|
public void setForPublicConsumption(String forPublicConsumption) {
|
||||||
this.forPublicConsumption = forPublicConsumption;
|
this.forPublicConsumption = forPublicConsumption;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getTransitionalDataText() {
|
public String getTransitionalDataText() {
|
||||||
return this.transitionalDataText;
|
return this.transitionalDataText;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTransitionalDataText(java.lang.String transitionalDataText) {
|
public void setTransitionalDataText(String transitionalDataText) {
|
||||||
this.transitionalDataText = transitionalDataText;
|
this.transitionalDataText = transitionalDataText;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,22 +8,18 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
abstract public class BaseTranslationEquivalent extends LexComponent implements org.thdl.lex.component.ITranslationEquivalent,Serializable {
|
abstract public class BaseTranslationEquivalent extends LexComponent implements org.thdl.lex.component.ITranslationEquivalent,Serializable {
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer parentId;
|
private Integer parentId;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer precedence;
|
private String translationEquivalent;
|
||||||
|
|
||||||
/** nullable persistent field */
|
|
||||||
private java.lang.String translationEquivalent;
|
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private org.thdl.lex.component.ILexComponent parent;
|
private org.thdl.lex.component.ILexComponent parent;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public BaseTranslationEquivalent(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, java.lang.Integer parentId, java.lang.Integer precedence, java.lang.String translationEquivalent, org.thdl.lex.component.ILexComponent parent) {
|
public BaseTranslationEquivalent(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta, Integer parentId, String translationEquivalent, org.thdl.lex.component.ILexComponent parent) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
this.precedence = precedence;
|
|
||||||
this.translationEquivalent = translationEquivalent;
|
this.translationEquivalent = translationEquivalent;
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
}
|
}
|
||||||
|
@ -33,31 +29,23 @@ abstract public class BaseTranslationEquivalent extends LexComponent implements
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public BaseTranslationEquivalent(java.lang.Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
public BaseTranslationEquivalent(Boolean deleted, List analyticalNotes, org.thdl.lex.component.Meta meta) {
|
||||||
super(deleted, analyticalNotes, meta);
|
super(deleted, analyticalNotes, meta);
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getParentId() {
|
public Integer getParentId() {
|
||||||
return this.parentId;
|
return this.parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParentId(java.lang.Integer parentId) {
|
public void setParentId(Integer parentId) {
|
||||||
this.parentId = parentId;
|
this.parentId = parentId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getPrecedence() {
|
public String getTranslationEquivalent() {
|
||||||
return this.precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPrecedence(java.lang.Integer precedence) {
|
|
||||||
this.precedence = precedence;
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.lang.String getTranslationEquivalent() {
|
|
||||||
return this.translationEquivalent;
|
return this.translationEquivalent;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTranslationEquivalent(java.lang.String translationEquivalent) {
|
public void setTranslationEquivalent(String translationEquivalent) {
|
||||||
this.translationEquivalent = translationEquivalent;
|
this.translationEquivalent = translationEquivalent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -55,23 +55,6 @@ public interface IDefinition extends LexComponentNode
|
||||||
public void setDefinition( java.lang.String definition );
|
public void setDefinition( java.lang.String definition );
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the precedence attribute of the IDefinition object
|
|
||||||
*
|
|
||||||
* @return The precedence value
|
|
||||||
* @since
|
|
||||||
*/
|
|
||||||
public java.lang.Integer getPrecedence();
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the precedence attribute of the IDefinition object
|
|
||||||
*
|
|
||||||
* @param precedence The new precedence value
|
|
||||||
* @since
|
|
||||||
*/
|
|
||||||
public void setPrecedence( java.lang.Integer precedence );
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the subdefinitions attribute of the IDefinition object
|
* Gets the subdefinitions attribute of the IDefinition object
|
||||||
|
|
|
@ -50,20 +50,6 @@ public interface ILexComponent
|
||||||
public java.lang.Integer getParentId();
|
public java.lang.Integer getParentId();
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the precedence attribute of the ILexComponent object
|
|
||||||
*
|
|
||||||
* @return The precedence value
|
|
||||||
*/
|
|
||||||
public java.lang.Integer getPrecedence();
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the precedence attribute of the LexComponent object
|
|
||||||
*
|
|
||||||
* @param precedence The new precedence value
|
|
||||||
*/
|
|
||||||
public void setPrecedence( java.lang.Integer precedence );
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -26,25 +26,6 @@ public interface ITerm extends LexComponentNode
|
||||||
*/
|
*/
|
||||||
public void setTerm( java.lang.String term );
|
public void setTerm( java.lang.String term );
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the precedence attribute of the ITerm object
|
|
||||||
*
|
|
||||||
* @return The precedence value
|
|
||||||
* @since
|
|
||||||
*/
|
|
||||||
public java.lang.Integer getPrecedence();
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the precedence attribute of the ITerm object
|
|
||||||
*
|
|
||||||
* @param precedence The new precedence value
|
|
||||||
* @since
|
|
||||||
*/
|
|
||||||
public void setPrecedence( java.lang.Integer precedence );
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the pronunciations attribute of the ITerm object
|
* Gets the pronunciations attribute of the ITerm object
|
||||||
*
|
*
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="analyticalNote" type="java.lang.String" column="analyticalNote" length="65535"/>
|
<property name="analyticalNote" type="java.lang.String" column="analyticalNote" length="65535"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
<property name="term" type="java.lang.String" column="term" not-null="true" length="255">
|
<property name="term" type="java.lang.String" column="term" not-null="true" length="255">
|
||||||
<!-- <meta attribute="finder-method">findByTerm</meta> -->
|
<!-- <meta attribute="finder-method">findByTerm</meta> -->
|
||||||
</property>
|
</property>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<list name="pronunciations" table="Pronunciations" lazy="true">
|
<list name="pronunciations" table="Pronunciations" lazy="true">
|
||||||
<key column="parentId"/>
|
<key column="parentId"/>
|
||||||
<index column="precedence"/>
|
<index column="precedence"/>
|
||||||
|
@ -141,7 +141,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" not-null="true" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="definition" type="java.lang.String" column="definition" length="65535"/>
|
<property name="definition" type="java.lang.String" column="definition" length="65535"/>
|
||||||
<property name="translationOf" type="java.lang.Integer" column="translationOf" length="11"/>
|
<property name="translationOf" type="java.lang.Integer" column="translationOf" length="11"/>
|
||||||
<list name="translations" table="Definitions" lazy="true" where="translationOf IS NOT NULL">
|
<list name="translations" table="Definitions" lazy="true" where="translationOf IS NOT NULL">
|
||||||
|
@ -201,7 +201,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="subdefinition" type="java.lang.String" column="subdefinition" length="65535"/>
|
<property name="subdefinition" type="java.lang.String" column="subdefinition" length="65535"/>
|
||||||
<property name="translationOf" type="java.lang.Integer" column="translationOf" length="11"/>
|
<property name="translationOf" type="java.lang.Integer" column="translationOf" length="11"/>
|
||||||
<list name="translations" table="Subdefinitions" lazy="true" where="translationOf IS NOT NULL">
|
<list name="translations" table="Subdefinitions" lazy="true" where="translationOf IS NOT NULL">
|
||||||
|
@ -255,7 +255,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="phonetics" type="java.lang.String" column="phonetics" not-null="true" length="65535"/>
|
<property name="phonetics" type="java.lang.String" column="phonetics" not-null="true" length="65535"/>
|
||||||
<property name="phoneticsType" type="java.lang.Integer" column="phoneticsType" not-null="true" length="6"/>
|
<property name="phoneticsType" type="java.lang.Integer" column="phoneticsType" not-null="true" length="6"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
@ -270,7 +270,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="loanLanguage" type="java.lang.Integer" column="loanLanguage" length="6"/>
|
<property name="loanLanguage" type="java.lang.Integer" column="loanLanguage" length="6"/>
|
||||||
<property name="etymologyType" type="java.lang.Integer" column="etymologyType" not-null="true" length="6"/>
|
<property name="etymologyType" type="java.lang.Integer" column="etymologyType" not-null="true" length="6"/>
|
||||||
<property name="derivation" type="java.lang.String" column="derivation" not-null="true" length="255"/>
|
<property name="derivation" type="java.lang.String" column="derivation" not-null="true" length="255"/>
|
||||||
|
@ -292,7 +292,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="spelling" type="java.lang.String" column="spelling" not-null="true" length="255"/>
|
<property name="spelling" type="java.lang.String" column="spelling" not-null="true" length="255"/>
|
||||||
<property name="spellingType" type="java.lang.Integer" column="spellingType" not-null="true" length="6"/>
|
<property name="spellingType" type="java.lang.Integer" column="spellingType" not-null="true" length="6"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
@ -306,7 +306,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="function" type="java.lang.Integer" column="function" not-null="true" length="6"/>
|
<property name="function" type="java.lang.Integer" column="function" not-null="true" length="6"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
|
||||||
|
@ -319,7 +319,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="article" type="java.lang.String" column="article" not-null="true" length="65535"/>
|
<property name="article" type="java.lang.String" column="article" not-null="true" length="65535"/>
|
||||||
<property name="articleTitle" type="java.lang.String" column="articleTitle" not-null="true" length="65535"/>
|
<property name="articleTitle" type="java.lang.String" column="articleTitle" not-null="true" length="65535"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
@ -333,7 +333,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="gloss" type="java.lang.String" column="gloss" length="65535"/>
|
<property name="gloss" type="java.lang.String" column="gloss" length="65535"/>
|
||||||
<property name="translation" type="java.lang.String" column="translation" length="65535"/>
|
<property name="translation" type="java.lang.String" column="translation" length="65535"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
@ -347,7 +347,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="keyword" type="java.lang.String" column="keyword" length="65535"/>
|
<property name="keyword" type="java.lang.String" column="keyword" length="65535"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
|
||||||
|
@ -361,7 +361,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="modelSentence" type="java.lang.String" column="modelSentence" length="65535"/>
|
<property name="modelSentence" type="java.lang.String" column="modelSentence" length="65535"/>
|
||||||
<property name="translationOf" type="java.lang.Integer" column="translationOf" length="11"/>
|
<property name="translationOf" type="java.lang.Integer" column="translationOf" length="11"/>
|
||||||
<list name="translations" table="ModelSentences" lazy="true" where="translationOf IS NOT NULL">
|
<list name="translations" table="ModelSentences" lazy="true" where="translationOf IS NOT NULL">
|
||||||
|
@ -380,7 +380,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="translationEquivalent" type="java.lang.String" column="translationEquivalent" length="65535"/>
|
<property name="translationEquivalent" type="java.lang.String" column="translationEquivalent" length="65535"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
|
||||||
|
@ -393,7 +393,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="relatedTerm" type="java.lang.String" column="relatedTerm" length="65535"/>
|
<property name="relatedTerm" type="java.lang.String" column="relatedTerm" length="65535"/>
|
||||||
<property name="relatedTermType" type="java.lang.Integer" column="relatedTermType" not-null="true" length="6"/>
|
<property name="relatedTermType" type="java.lang.Integer" column="relatedTermType" not-null="true" length="6"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
@ -408,7 +408,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="literarySource" type="java.lang.String" column="literarySource" length="65535"/>
|
<property name="literarySource" type="java.lang.String" column="literarySource" length="65535"/>
|
||||||
<property name="spelling" type="java.lang.String" column="spelling" length="65535"/>
|
<property name="spelling" type="java.lang.String" column="spelling" length="65535"/>
|
||||||
<property name="pagination" type="java.lang.String" column="pagination" length="65535"/>
|
<property name="pagination" type="java.lang.String" column="pagination" length="65535"/>
|
||||||
|
@ -430,7 +430,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="register" type="java.lang.Integer" column="register" not-null="true" length="6"/>
|
<property name="register" type="java.lang.Integer" column="register" not-null="true" length="6"/>
|
||||||
</joined-subclass>
|
</joined-subclass>
|
||||||
|
|
||||||
|
@ -443,7 +443,7 @@
|
||||||
<!--<meta attribute="gen-property">false</meta>-->
|
<!--<meta attribute="gen-property">false</meta>-->
|
||||||
</property>
|
</property>
|
||||||
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
<many-to-one name="parent" class="org.thdl.lex.component.LexComponent" column="parentId" insert="false" update="false"/>
|
||||||
<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>
|
<!--<property name="precedence" type="java.lang.Integer" column="precedence" length="6"/>-->
|
||||||
<property name="transitionalDataLabel" type="java.lang.Integer" column="transitionalDataLabel" length="6"/>
|
<property name="transitionalDataLabel" type="java.lang.Integer" column="transitionalDataLabel" length="6"/>
|
||||||
<property name="forPublicConsumption" type="java.lang.String" column="forPublicConsumption" not-null="true" length="5"/>
|
<property name="forPublicConsumption" type="java.lang.String" column="forPublicConsumption" not-null="true" length="5"/>
|
||||||
<property name="transitionalDataText" type="java.lang.String" column="transitionalDataText" length="65535"/>
|
<property name="transitionalDataText" type="java.lang.String" column="transitionalDataText" length="65535"/>
|
||||||
|
|
|
@ -79,21 +79,6 @@ public abstract class LexComponent extends BaseLexComponent implements Serializa
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the precedence attribute of the LexComponent object
|
|
||||||
*
|
|
||||||
* @return The precedence value
|
|
||||||
*/
|
|
||||||
public abstract java.lang.Integer getPrecedence();
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the precedence attribute of the LexComponent object
|
|
||||||
*
|
|
||||||
* @param precedence The new precedence value
|
|
||||||
*/
|
|
||||||
public abstract void setPrecedence( java.lang.Integer precedence );
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the parent attribute of the LexComponent object
|
* Sets the parent attribute of the LexComponent object
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class Author implements Serializable {
|
public class Author implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String author;
|
private String author;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public Author(java.lang.String author) {
|
public Author(String author) {
|
||||||
this.author = author;
|
this.author = author;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class Author implements Serializable {
|
||||||
public Author() {
|
public Author() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getId() {
|
public Integer getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Integer id) {
|
public void setId(Integer id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getAuthor() {
|
public String getAuthor() {
|
||||||
return this.author;
|
return this.author;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAuthor(java.lang.String author) {
|
public void setAuthor(String author) {
|
||||||
this.author = author;
|
this.author = author;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class Dialect implements Serializable {
|
public class Dialect implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private short majorDialectFamily;
|
private short majorDialectFamily;
|
||||||
|
@ -27,11 +27,11 @@ public class Dialect implements Serializable {
|
||||||
public Dialect() {
|
public Dialect() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getId() {
|
public Integer getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Integer id) {
|
public void setId(Integer id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class EtymologyType implements Serializable {
|
public class EtymologyType implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String etymologyType;
|
private String etymologyType;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public EtymologyType(java.lang.String etymologyType) {
|
public EtymologyType(String etymologyType) {
|
||||||
this.etymologyType = etymologyType;
|
this.etymologyType = etymologyType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class EtymologyType implements Serializable {
|
||||||
public EtymologyType() {
|
public EtymologyType() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getEtymologyType() {
|
public String getEtymologyType() {
|
||||||
return this.etymologyType;
|
return this.etymologyType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEtymologyType(java.lang.String etymologyType) {
|
public void setEtymologyType(String etymologyType) {
|
||||||
this.etymologyType = etymologyType;
|
this.etymologyType = etymologyType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class Function implements Serializable {
|
public class Function implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private short functionGeneral;
|
private short functionGeneral;
|
||||||
|
@ -27,11 +27,11 @@ public class Function implements Serializable {
|
||||||
public Function() {
|
public Function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class FunctionGeneral implements Serializable {
|
public class FunctionGeneral implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String functionGeneral;
|
private String functionGeneral;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public FunctionGeneral(java.lang.String functionGeneral) {
|
public FunctionGeneral(String functionGeneral) {
|
||||||
this.functionGeneral = functionGeneral;
|
this.functionGeneral = functionGeneral;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class FunctionGeneral implements Serializable {
|
||||||
public FunctionGeneral() {
|
public FunctionGeneral() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getFunctionGeneral() {
|
public String getFunctionGeneral() {
|
||||||
return this.functionGeneral;
|
return this.functionGeneral;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setFunctionGeneral(java.lang.String functionGeneral) {
|
public void setFunctionGeneral(String functionGeneral) {
|
||||||
this.functionGeneral = functionGeneral;
|
this.functionGeneral = functionGeneral;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class FunctionSpecific implements Serializable {
|
public class FunctionSpecific implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String functionSpecific;
|
private String functionSpecific;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public FunctionSpecific(java.lang.String functionSpecific) {
|
public FunctionSpecific(String functionSpecific) {
|
||||||
this.functionSpecific = functionSpecific;
|
this.functionSpecific = functionSpecific;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class FunctionSpecific implements Serializable {
|
||||||
public FunctionSpecific() {
|
public FunctionSpecific() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getFunctionSpecific() {
|
public String getFunctionSpecific() {
|
||||||
return this.functionSpecific;
|
return this.functionSpecific;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setFunctionSpecific(java.lang.String functionSpecific) {
|
public void setFunctionSpecific(String functionSpecific) {
|
||||||
this.functionSpecific = functionSpecific;
|
this.functionSpecific = functionSpecific;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class Language implements Serializable {
|
public class Language implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String language;
|
private String language;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public Language(java.lang.String language) {
|
public Language(String language) {
|
||||||
this.language = language;
|
this.language = language;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class Language implements Serializable {
|
||||||
public Language() {
|
public Language() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getLanguage() {
|
public String getLanguage() {
|
||||||
return this.language;
|
return this.language;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLanguage(java.lang.String language) {
|
public void setLanguage(String language) {
|
||||||
this.language = language;
|
this.language = language;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class LiteraryForm implements Serializable {
|
public class LiteraryForm implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String literaryForm;
|
private String literaryForm;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public LiteraryForm(java.lang.String literaryForm) {
|
public LiteraryForm(String literaryForm) {
|
||||||
this.literaryForm = literaryForm;
|
this.literaryForm = literaryForm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class LiteraryForm implements Serializable {
|
||||||
public LiteraryForm() {
|
public LiteraryForm() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getId() {
|
public Integer getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Integer id) {
|
public void setId(Integer id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getLiteraryForm() {
|
public String getLiteraryForm() {
|
||||||
return this.literaryForm;
|
return this.literaryForm;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLiteraryForm(java.lang.String literaryForm) {
|
public void setLiteraryForm(String literaryForm) {
|
||||||
this.literaryForm = literaryForm;
|
this.literaryForm = literaryForm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class LiteraryGenre implements Serializable {
|
public class LiteraryGenre implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String literaryGenre;
|
private String literaryGenre;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public LiteraryGenre(java.lang.String literaryGenre) {
|
public LiteraryGenre(String literaryGenre) {
|
||||||
this.literaryGenre = literaryGenre;
|
this.literaryGenre = literaryGenre;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class LiteraryGenre implements Serializable {
|
||||||
public LiteraryGenre() {
|
public LiteraryGenre() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getId() {
|
public Integer getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Integer id) {
|
public void setId(Integer id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getLiteraryGenre() {
|
public String getLiteraryGenre() {
|
||||||
return this.literaryGenre;
|
return this.literaryGenre;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLiteraryGenre(java.lang.String literaryGenre) {
|
public void setLiteraryGenre(String literaryGenre) {
|
||||||
this.literaryGenre = literaryGenre;
|
this.literaryGenre = literaryGenre;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class LiteraryPeriod implements Serializable {
|
public class LiteraryPeriod implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String literaryPeriod;
|
private String literaryPeriod;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public LiteraryPeriod(java.lang.String literaryPeriod) {
|
public LiteraryPeriod(String literaryPeriod) {
|
||||||
this.literaryPeriod = literaryPeriod;
|
this.literaryPeriod = literaryPeriod;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class LiteraryPeriod implements Serializable {
|
||||||
public LiteraryPeriod() {
|
public LiteraryPeriod() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getId() {
|
public Integer getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Integer id) {
|
public void setId(Integer id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getLiteraryPeriod() {
|
public String getLiteraryPeriod() {
|
||||||
return this.literaryPeriod;
|
return this.literaryPeriod;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLiteraryPeriod(java.lang.String literaryPeriod) {
|
public void setLiteraryPeriod(String literaryPeriod) {
|
||||||
this.literaryPeriod = literaryPeriod;
|
this.literaryPeriod = literaryPeriod;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package org.thdl.lex.component.child;
|
package org.thdl.lex.component.child;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.Date;
|
||||||
import org.apache.commons.lang.builder.EqualsBuilder;
|
import org.apache.commons.lang.builder.EqualsBuilder;
|
||||||
import org.apache.commons.lang.builder.HashCodeBuilder;
|
import org.apache.commons.lang.builder.HashCodeBuilder;
|
||||||
import org.apache.commons.lang.builder.ToStringBuilder;
|
import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
|
@ -9,49 +10,49 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class LiterarySource implements Serializable {
|
public class LiterarySource implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer literaryPeriod;
|
private Integer literaryPeriod;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer literaryGenre;
|
private Integer literaryGenre;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer literaryForm;
|
private Integer literaryForm;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.Integer author;
|
private Integer author;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String sourceNormalizedTitle;
|
private String sourceNormalizedTitle;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String tibetanDate;
|
private String tibetanDate;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String internationalDate;
|
private String internationalDate;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String edition;
|
private String edition;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String publisher;
|
private String publisher;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String isbn;
|
private String isbn;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.util.Date yearPublished;
|
private Date yearPublished;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer volumeNumber;
|
private Integer volumeNumber;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String pagination;
|
private String pagination;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public LiterarySource(java.lang.Integer literaryPeriod, java.lang.Integer literaryGenre, java.lang.Integer literaryForm, java.lang.Integer author, java.lang.String sourceNormalizedTitle, java.lang.String tibetanDate, java.lang.String internationalDate, java.lang.String edition, java.lang.String publisher, java.lang.String isbn, java.util.Date yearPublished, java.lang.Integer volumeNumber, java.lang.String pagination) {
|
public LiterarySource(Integer literaryPeriod, Integer literaryGenre, Integer literaryForm, Integer author, String sourceNormalizedTitle, String tibetanDate, String internationalDate, String edition, String publisher, String isbn, Date yearPublished, Integer volumeNumber, String pagination) {
|
||||||
this.literaryPeriod = literaryPeriod;
|
this.literaryPeriod = literaryPeriod;
|
||||||
this.literaryGenre = literaryGenre;
|
this.literaryGenre = literaryGenre;
|
||||||
this.literaryForm = literaryForm;
|
this.literaryForm = literaryForm;
|
||||||
|
@ -72,119 +73,119 @@ public class LiterarySource implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public LiterarySource(java.lang.Integer volumeNumber) {
|
public LiterarySource(Integer volumeNumber) {
|
||||||
this.volumeNumber = volumeNumber;
|
this.volumeNumber = volumeNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getId() {
|
public Integer getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Integer id) {
|
public void setId(Integer id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getLiteraryPeriod() {
|
public Integer getLiteraryPeriod() {
|
||||||
return this.literaryPeriod;
|
return this.literaryPeriod;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLiteraryPeriod(java.lang.Integer literaryPeriod) {
|
public void setLiteraryPeriod(Integer literaryPeriod) {
|
||||||
this.literaryPeriod = literaryPeriod;
|
this.literaryPeriod = literaryPeriod;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getLiteraryGenre() {
|
public Integer getLiteraryGenre() {
|
||||||
return this.literaryGenre;
|
return this.literaryGenre;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLiteraryGenre(java.lang.Integer literaryGenre) {
|
public void setLiteraryGenre(Integer literaryGenre) {
|
||||||
this.literaryGenre = literaryGenre;
|
this.literaryGenre = literaryGenre;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getLiteraryForm() {
|
public Integer getLiteraryForm() {
|
||||||
return this.literaryForm;
|
return this.literaryForm;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLiteraryForm(java.lang.Integer literaryForm) {
|
public void setLiteraryForm(Integer literaryForm) {
|
||||||
this.literaryForm = literaryForm;
|
this.literaryForm = literaryForm;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getAuthor() {
|
public Integer getAuthor() {
|
||||||
return this.author;
|
return this.author;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAuthor(java.lang.Integer author) {
|
public void setAuthor(Integer author) {
|
||||||
this.author = author;
|
this.author = author;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getSourceNormalizedTitle() {
|
public String getSourceNormalizedTitle() {
|
||||||
return this.sourceNormalizedTitle;
|
return this.sourceNormalizedTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSourceNormalizedTitle(java.lang.String sourceNormalizedTitle) {
|
public void setSourceNormalizedTitle(String sourceNormalizedTitle) {
|
||||||
this.sourceNormalizedTitle = sourceNormalizedTitle;
|
this.sourceNormalizedTitle = sourceNormalizedTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getTibetanDate() {
|
public String getTibetanDate() {
|
||||||
return this.tibetanDate;
|
return this.tibetanDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTibetanDate(java.lang.String tibetanDate) {
|
public void setTibetanDate(String tibetanDate) {
|
||||||
this.tibetanDate = tibetanDate;
|
this.tibetanDate = tibetanDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getInternationalDate() {
|
public String getInternationalDate() {
|
||||||
return this.internationalDate;
|
return this.internationalDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setInternationalDate(java.lang.String internationalDate) {
|
public void setInternationalDate(String internationalDate) {
|
||||||
this.internationalDate = internationalDate;
|
this.internationalDate = internationalDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getEdition() {
|
public String getEdition() {
|
||||||
return this.edition;
|
return this.edition;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEdition(java.lang.String edition) {
|
public void setEdition(String edition) {
|
||||||
this.edition = edition;
|
this.edition = edition;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getPublisher() {
|
public String getPublisher() {
|
||||||
return this.publisher;
|
return this.publisher;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPublisher(java.lang.String publisher) {
|
public void setPublisher(String publisher) {
|
||||||
this.publisher = publisher;
|
this.publisher = publisher;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getIsbn() {
|
public String getIsbn() {
|
||||||
return this.isbn;
|
return this.isbn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setIsbn(java.lang.String isbn) {
|
public void setIsbn(String isbn) {
|
||||||
this.isbn = isbn;
|
this.isbn = isbn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.util.Date getYearPublished() {
|
public Date getYearPublished() {
|
||||||
return this.yearPublished;
|
return this.yearPublished;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setYearPublished(java.util.Date yearPublished) {
|
public void setYearPublished(Date yearPublished) {
|
||||||
this.yearPublished = yearPublished;
|
this.yearPublished = yearPublished;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getVolumeNumber() {
|
public Integer getVolumeNumber() {
|
||||||
return this.volumeNumber;
|
return this.volumeNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setVolumeNumber(java.lang.Integer volumeNumber) {
|
public void setVolumeNumber(Integer volumeNumber) {
|
||||||
this.volumeNumber = volumeNumber;
|
this.volumeNumber = volumeNumber;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getPagination() {
|
public String getPagination() {
|
||||||
return this.pagination;
|
return this.pagination;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPagination(java.lang.String pagination) {
|
public void setPagination(String pagination) {
|
||||||
this.pagination = pagination;
|
this.pagination = pagination;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class MajorDialectFamily implements Serializable {
|
public class MajorDialectFamily implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String majorDialectFamily;
|
private String majorDialectFamily;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public MajorDialectFamily(java.lang.String majorDialectFamily) {
|
public MajorDialectFamily(String majorDialectFamily) {
|
||||||
this.majorDialectFamily = majorDialectFamily;
|
this.majorDialectFamily = majorDialectFamily;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class MajorDialectFamily implements Serializable {
|
||||||
public MajorDialectFamily() {
|
public MajorDialectFamily() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getMajorDialectFamily() {
|
public String getMajorDialectFamily() {
|
||||||
return this.majorDialectFamily;
|
return this.majorDialectFamily;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setMajorDialectFamily(java.lang.String majorDialectFamily) {
|
public void setMajorDialectFamily(String majorDialectFamily) {
|
||||||
this.majorDialectFamily = majorDialectFamily;
|
this.majorDialectFamily = majorDialectFamily;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class PhoneticsType implements Serializable {
|
public class PhoneticsType implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String phoneticsType;
|
private String phoneticsType;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public PhoneticsType(java.lang.String phoneticsType) {
|
public PhoneticsType(String phoneticsType) {
|
||||||
this.phoneticsType = phoneticsType;
|
this.phoneticsType = phoneticsType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class PhoneticsType implements Serializable {
|
||||||
public PhoneticsType() {
|
public PhoneticsType() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getPhoneticsType() {
|
public String getPhoneticsType() {
|
||||||
return this.phoneticsType;
|
return this.phoneticsType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPhoneticsType(java.lang.String phoneticsType) {
|
public void setPhoneticsType(String phoneticsType) {
|
||||||
this.phoneticsType = phoneticsType;
|
this.phoneticsType = phoneticsType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,19 +9,19 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class ProjectSubject implements Serializable {
|
public class ProjectSubject implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String projectSubject;
|
private String projectSubject;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.Integer leader;
|
private Integer leader;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String participantList;
|
private String participantList;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public ProjectSubject(java.lang.String projectSubject, java.lang.Integer leader, java.lang.String participantList) {
|
public ProjectSubject(String projectSubject, Integer leader, String participantList) {
|
||||||
this.projectSubject = projectSubject;
|
this.projectSubject = projectSubject;
|
||||||
this.leader = leader;
|
this.leader = leader;
|
||||||
this.participantList = participantList;
|
this.participantList = participantList;
|
||||||
|
@ -32,39 +32,39 @@ public class ProjectSubject implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public ProjectSubject(java.lang.Integer leader) {
|
public ProjectSubject(Integer leader) {
|
||||||
this.leader = leader;
|
this.leader = leader;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getId() {
|
public Integer getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Integer id) {
|
public void setId(Integer id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getProjectSubject() {
|
public String getProjectSubject() {
|
||||||
return this.projectSubject;
|
return this.projectSubject;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setProjectSubject(java.lang.String projectSubject) {
|
public void setProjectSubject(String projectSubject) {
|
||||||
this.projectSubject = projectSubject;
|
this.projectSubject = projectSubject;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getLeader() {
|
public Integer getLeader() {
|
||||||
return this.leader;
|
return this.leader;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLeader(java.lang.Integer leader) {
|
public void setLeader(Integer leader) {
|
||||||
this.leader = leader;
|
this.leader = leader;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getParticipantList() {
|
public String getParticipantList() {
|
||||||
return this.participantList;
|
return this.participantList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setParticipantList(java.lang.String participantList) {
|
public void setParticipantList(String participantList) {
|
||||||
this.participantList = participantList;
|
this.participantList = participantList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class Register implements Serializable {
|
public class Register implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String register;
|
private String register;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public Register(java.lang.String register) {
|
public Register(String register) {
|
||||||
this.register = register;
|
this.register = register;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class Register implements Serializable {
|
||||||
public Register() {
|
public Register() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getRegister() {
|
public String getRegister() {
|
||||||
return this.register;
|
return this.register;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRegister(java.lang.String register) {
|
public void setRegister(String register) {
|
||||||
this.register = register;
|
this.register = register;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class RelatedTermType implements Serializable {
|
public class RelatedTermType implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String relatedTermType;
|
private String relatedTermType;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public RelatedTermType(java.lang.String relatedTermType) {
|
public RelatedTermType(String relatedTermType) {
|
||||||
this.relatedTermType = relatedTermType;
|
this.relatedTermType = relatedTermType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class RelatedTermType implements Serializable {
|
||||||
public RelatedTermType() {
|
public RelatedTermType() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getRelatedTermType() {
|
public String getRelatedTermType() {
|
||||||
return this.relatedTermType;
|
return this.relatedTermType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setRelatedTermType(java.lang.String relatedTermType) {
|
public void setRelatedTermType(String relatedTermType) {
|
||||||
this.relatedTermType = relatedTermType;
|
this.relatedTermType = relatedTermType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class Script implements Serializable {
|
public class Script implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String script;
|
private String script;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public Script(java.lang.String script) {
|
public Script(String script) {
|
||||||
this.script = script;
|
this.script = script;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class Script implements Serializable {
|
||||||
public Script() {
|
public Script() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getScript() {
|
public String getScript() {
|
||||||
return this.script;
|
return this.script;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setScript(java.lang.String script) {
|
public void setScript(String script) {
|
||||||
this.script = script;
|
this.script = script;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,16 +9,16 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class Source implements Serializable {
|
public class Source implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String sourceTitle;
|
private String sourceTitle;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String sourceDescription;
|
private String sourceDescription;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public Source(java.lang.String sourceTitle, java.lang.String sourceDescription) {
|
public Source(String sourceTitle, String sourceDescription) {
|
||||||
this.sourceTitle = sourceTitle;
|
this.sourceTitle = sourceTitle;
|
||||||
this.sourceDescription = sourceDescription;
|
this.sourceDescription = sourceDescription;
|
||||||
}
|
}
|
||||||
|
@ -28,31 +28,31 @@ public class Source implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** minimal constructor */
|
/** minimal constructor */
|
||||||
public Source(java.lang.String sourceTitle) {
|
public Source(String sourceTitle) {
|
||||||
this.sourceTitle = sourceTitle;
|
this.sourceTitle = sourceTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Integer getId() {
|
public Integer getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Integer id) {
|
public void setId(Integer id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getSourceTitle() {
|
public String getSourceTitle() {
|
||||||
return this.sourceTitle;
|
return this.sourceTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSourceTitle(java.lang.String sourceTitle) {
|
public void setSourceTitle(String sourceTitle) {
|
||||||
this.sourceTitle = sourceTitle;
|
this.sourceTitle = sourceTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getSourceDescription() {
|
public String getSourceDescription() {
|
||||||
return this.sourceDescription;
|
return this.sourceDescription;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSourceDescription(java.lang.String sourceDescription) {
|
public void setSourceDescription(String sourceDescription) {
|
||||||
this.sourceDescription = sourceDescription;
|
this.sourceDescription = sourceDescription;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class SpecificDialect implements Serializable {
|
public class SpecificDialect implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String specificDialect;
|
private String specificDialect;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public SpecificDialect(java.lang.String specificDialect) {
|
public SpecificDialect(String specificDialect) {
|
||||||
this.specificDialect = specificDialect;
|
this.specificDialect = specificDialect;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class SpecificDialect implements Serializable {
|
||||||
public SpecificDialect() {
|
public SpecificDialect() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getSpecificDialect() {
|
public String getSpecificDialect() {
|
||||||
return this.specificDialect;
|
return this.specificDialect;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSpecificDialect(java.lang.String specificDialect) {
|
public void setSpecificDialect(String specificDialect) {
|
||||||
this.specificDialect = specificDialect;
|
this.specificDialect = specificDialect;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class SpellingType implements Serializable {
|
public class SpellingType implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** persistent field */
|
/** persistent field */
|
||||||
private java.lang.String spellingType;
|
private String spellingType;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public SpellingType(java.lang.String spellingType) {
|
public SpellingType(String spellingType) {
|
||||||
this.spellingType = spellingType;
|
this.spellingType = spellingType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class SpellingType implements Serializable {
|
||||||
public SpellingType() {
|
public SpellingType() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getSpellingType() {
|
public String getSpellingType() {
|
||||||
return this.spellingType;
|
return this.spellingType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSpellingType(java.lang.String spellingType) {
|
public void setSpellingType(String spellingType) {
|
||||||
this.spellingType = spellingType;
|
this.spellingType = spellingType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,13 +9,13 @@ import org.apache.commons.lang.builder.ToStringBuilder;
|
||||||
public class TransitionalDataLabel implements Serializable {
|
public class TransitionalDataLabel implements Serializable {
|
||||||
|
|
||||||
/** identifier field */
|
/** identifier field */
|
||||||
private java.lang.Short id;
|
private Short id;
|
||||||
|
|
||||||
/** nullable persistent field */
|
/** nullable persistent field */
|
||||||
private java.lang.String transitionalDataLabel;
|
private String transitionalDataLabel;
|
||||||
|
|
||||||
/** full constructor */
|
/** full constructor */
|
||||||
public TransitionalDataLabel(java.lang.String transitionalDataLabel) {
|
public TransitionalDataLabel(String transitionalDataLabel) {
|
||||||
this.transitionalDataLabel = transitionalDataLabel;
|
this.transitionalDataLabel = transitionalDataLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,19 +23,19 @@ public class TransitionalDataLabel implements Serializable {
|
||||||
public TransitionalDataLabel() {
|
public TransitionalDataLabel() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.Short getId() {
|
public Short getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(java.lang.Short id) {
|
public void setId(Short id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getTransitionalDataLabel() {
|
public String getTransitionalDataLabel() {
|
||||||
return this.transitionalDataLabel;
|
return this.transitionalDataLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setTransitionalDataLabel(java.lang.String transitionalDataLabel) {
|
public void setTransitionalDataLabel(String transitionalDataLabel) {
|
||||||
this.transitionalDataLabel = transitionalDataLabel;
|
this.transitionalDataLabel = transitionalDataLabel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
<c:set target="${ sessionScope.visit.helper }" property="component" value="${definition}"/>
|
<c:set target="${ sessionScope.visit.helper }" property="component" value="${definition}"/>
|
||||||
<c:out value="<a name='${ sessionScope.visit.helper.hashCodeForComponent }'></a>" escapeXml="false"/>
|
<c:out value="<a name='${ sessionScope.visit.helper.hashCodeForComponent }'></a>" escapeXml="false"/>
|
||||||
|
|
||||||
<c:out value='<a href="#${sessionScope.visit.helper.hashCodeForComponent}">Definition ${ definition.precedence + 1}</a>' escapeXml='false' />
|
<c:out value='<a href="#${sessionScope.visit.helper.hashCodeForComponent}">Definition ${ sessionScope.visit.helper.indexOfComponent }</a>' escapeXml='false' />
|
||||||
|
|
||||||
<ol>
|
<ol>
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
<c:forEach var="subdefinition" items="${ definition.subdefinitions }">
|
<c:forEach var="subdefinition" items="${ definition.subdefinitions }">
|
||||||
<li>
|
<li>
|
||||||
<c:set target="${ sessionScope.visit.helper }" property="component" value="${subdefinition}"/>
|
<c:set target="${ sessionScope.visit.helper }" property="component" value="${subdefinition}"/>
|
||||||
<c:out value='<a href="#${sessionScope.visit.helper.hashCodeForComponent}">Subdefinition ${ subdefinition.precedence + 1 }</a>' escapeXml='false' />
|
<c:out value='<a href="#${sessionScope.visit.helper.hashCodeForComponent}">Subdefinition ${ sessionScope.visit.helper.indexOfComponent }</a>' escapeXml='false' />
|
||||||
|
|
||||||
<ol>
|
<ol>
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<c:set var="source" value="${ sessionScope.visit.preferences.source }" />
|
<c:set var="source" value="${ sessionScope.visit.preferences.source }" />
|
||||||
<c:set var="projectSubject" value="${ sessionScope.visit.preferences.projectSubject }" />
|
<c:set var="projectSubject" value="${ sessionScope.visit.preferences.projectSubject }" />
|
||||||
<c:set var="script" value="${ sessionScope.visit.preferences.script }" />
|
<c:set var="script" value="${ sessionScope.visit.preferences.script }" />
|
||||||
<c:set var="precedence" value="0" />
|
<%-- <c:set var="precedence" value="0" /> --%>
|
||||||
<c:set var="note" value="${ sessionScope.visit.preferences.note }" />
|
<c:set var="note" value="${ sessionScope.visit.preferences.note }" />
|
||||||
</c:when>
|
</c:when>
|
||||||
<c:when test="${ ! empty param.formMode && param.formMode == 'update'}">
|
<c:when test="${ ! empty param.formMode && param.formMode == 'update'}">
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
<c:set var="source" value="${ component.meta.source }" />
|
<c:set var="source" value="${ component.meta.source }" />
|
||||||
<c:set var="projectSubject" value="${ component.meta.modifiedByProjSub }" />
|
<c:set var="projectSubject" value="${ component.meta.modifiedByProjSub }" />
|
||||||
<c:set var="script" value="${ component.meta.script }" />
|
<c:set var="script" value="${ component.meta.script }" />
|
||||||
<c:set var="precedence" value="${ component.precedence }" />
|
<%-- <c:set var="precedence" value="${ component.precedence }" /> --%>
|
||||||
<c:set var="note" value="${ component.meta.note }" />
|
<c:set var="note" value="${ component.meta.note }" />
|
||||||
</c:when>
|
</c:when>
|
||||||
<c:otherwise>
|
<c:otherwise>
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
<c:set var="parentId" value="${ param.parentId }" />
|
<c:set var="parentId" value="${ param.parentId }" />
|
||||||
</c:if> --%>
|
</c:if> --%>
|
||||||
<c:out value=' <input type="hidden" name="parentId" value="${parentId}" /> ' escapeXml='false' />
|
<c:out value=' <input type="hidden" name="parentId" value="${parentId}" /> ' escapeXml='false' />
|
||||||
<c:out value='<input type="hidden" name="precedence" value="${ precedence }" />'escapeXml="false" />
|
<%-- <c:out value='<input type="hidden" name="precedence" value="${ precedence }" />'escapeXml="false" /> --%>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -9,20 +9,20 @@
|
||||||
<c:set var="newCmd" value="insertTerm" />
|
<c:set var="newCmd" value="insertTerm" />
|
||||||
<c:set var="term" value="${ component.term }" />
|
<c:set var="term" value="${ component.term }" />
|
||||||
<c:set var="metaId" value="" />
|
<c:set var="metaId" value="" />
|
||||||
<c:set var="precedence" value="1" />
|
<%-- <c:set var="precedence" value="1" /> --%>
|
||||||
</c:when>
|
</c:when>
|
||||||
<c:when test="${ ! empty param.formMode && param.formMode == 'update'}">
|
<c:when test="${ ! empty param.formMode && param.formMode == 'update'}">
|
||||||
<c:set var="updateMode" value="${ true }" />
|
<c:set var="updateMode" value="${ true }" />
|
||||||
<c:set var="newCmd" value="updateTerm" />
|
<c:set var="newCmd" value="updateTerm" />
|
||||||
<c:set var="term" value="${ component.term }" />
|
<c:set var="term" value="${ component.term }" />
|
||||||
<c:set var="metaId" value="${ component.metaId }" />
|
<c:set var="metaId" value="${ component.metaId }" />
|
||||||
<c:set var="precedence" value="${ component.precedence }" />
|
<%-- <c:set var="precedence" value="${ component.precedence }" /> --%>
|
||||||
</c:when>
|
</c:when>
|
||||||
<c:otherwise>
|
<c:otherwise>
|
||||||
<c:set var="updateMode" value="${ false }" />
|
<c:set var="updateMode" value="${ false }" />
|
||||||
<c:set var="newCmd" value="" />
|
<c:set var="newCmd" value="" />
|
||||||
<c:set var="term" value="ERROR" />
|
<c:set var="term" value="ERROR" />
|
||||||
<c:set var="precedence" value="ERROR" />
|
<%-- <c:set var="precedence" value="ERROR" /> --%>
|
||||||
</c:otherwise>
|
</c:otherwise>
|
||||||
</c:choose>
|
</c:choose>
|
||||||
|
|
||||||
|
@ -38,8 +38,7 @@ Term: <c:out value='<strong>${ term }</strong> Edit Term: <input type="text" val
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<c:out value='<input type="hidden" value="${ precedence }" name="precedence" size="3"/>' escapeXml='false' />
|
<%-- <c:out value='<input type="hidden" value="${ precedence }" name="precedence" size="3"/>' escapeXml='false' /> --%>
|
||||||
|
|
||||||
|
|
||||||
<jsp:include page="metaForm.jsf" />
|
<jsp:include page="metaForm.jsf" />
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue