Merge from SEAMIST3

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10724 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2008-09-04 10:53:14 +00:00
parent 6cd69d17a2
commit 67733661cd
31 changed files with 3122 additions and 41 deletions

View File

@@ -50,7 +50,7 @@ public class M2Property
private boolean isIndexed = true;
private boolean isIndexedAtomically = true;
private boolean isStoredInIndex = false;
private boolean isTokenisedInIndex = true;
private IndexTokenisationMode indexTokenisationMode = IndexTokenisationMode.TRUE;
private List<M2Constraint> constraints;
/*package*/ M2Property()
@@ -204,15 +204,15 @@ public class M2Property
}
public boolean isTokenisedInIndex()
public IndexTokenisationMode getIndexTokenisationMode()
{
return isTokenisedInIndex;
return indexTokenisationMode;
}
public void setTokenisedInIndex(boolean isTokenisedInIndex)
public void setIndexTokenisationMode(IndexTokenisationMode indexTokenisationMode)
{
this.isTokenisedInIndex = isTokenisedInIndex;
this.indexTokenisationMode = indexTokenisationMode;
}