View Javadoc
1   package org.argeo.cms.ui.viewers;
2   
3   import javax.jcr.Property;
4   
5   /** An editable part related to a JCR Property */
6   public interface PropertyPart extends ItemPart<Property> {
7   	public Property getProperty();
8   }