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

@@ -214,7 +214,7 @@ import org.alfresco.service.namespace.QName;
property.setProtected(propertyDef.isProtected());
property.setStoredInIndex(propertyDef.isStoredInIndex());
property.setTitle(propertyDef.getTitle());
property.setTokenisedInIndex(propertyDef.isTokenisedInIndex());
property.setIndexTokenisationMode(propertyDef.getIndexTokenisationMode());
return property;
}
@@ -240,7 +240,7 @@ import org.alfresco.service.namespace.QName;
sb.append("isIndexed: " + isIndexed() + "\n");
sb.append("isStoredInIndex: " + isStoredInIndex() + "\n");
sb.append("isIndexedAtomically: " + isIndexedAtomically() + "\n");
sb.append("isTokenisedInIndex: " + isTokenisedInIndex() + "\n");
sb.append("indexTokenisationMode: " + getIndexTokenisationMode() + "\n");
return sb.toString();
}
@@ -378,9 +378,9 @@ import org.alfresco.service.namespace.QName;
/* (non-Javadoc)
* @see org.alfresco.repo.dictionary.PropertyDefinition#isTokenisedInIndex()
*/
public boolean isTokenisedInIndex()
public IndexTokenisationMode getIndexTokenisationMode()
{
return m2Property.isTokenisedInIndex();
return m2Property.getIndexTokenisationMode();
}