javax.jcr.PropertyIterator
261262263264265266267
public void setProperty(String name, boolean value) { setProperty(new StringProperty(name, Boolean.toString(value))); } public PropertyIterator propertyIterator() { return new PropertyIteratorImpl(propMap.values()); }
269270271272273274275
451452453454455456457
} } @Override public PropertyIterator propertyIterator() { return new PropertyIteratorImpl(propMap.values()); }
247248249250251252253
public void setProperty(String name, String value) { setProperty(new StringProperty(name, value)); } public PropertyIterator propertyIterator() { return new PropertyIteratorImpl(propMap.values()); }
public PropertyIterator getProperties() throws RepositoryException { List l = new ArrayList(2); l.add(getProperty(Constants.JCR_DATA)); l.add(getProperty(Constants.JCR_MIMETYPE)); return new PropertyIteratorImpl(l.iterator(), l.size()); }