1 31 32 package org.opencms.xml.types; 33 34 import org.opencms.file.CmsObject; 35 import org.opencms.xml.I_CmsXmlDocument; 36 37 import java.util.Locale ; 38 39 import org.dom4j.Element; 40 41 50 public interface I_CmsXmlContentValue extends I_CmsXmlSchemaType { 51 52 57 I_CmsXmlDocument getDocument(); 58 59 64 Element getElement(); 65 66 75 int getIndex(); 76 77 82 Locale getLocale(); 83 84 89 int getMaxIndex(); 90 91 96 String getPath(); 97 98 110 String getPlainText(CmsObject cms); 111 112 119 String getStringValue(CmsObject cms); 120 121 126 void moveDown(); 127 128 133 void moveUp(); 134 135 146 void setStringValue(CmsObject cms, String value); 147 } | Popular Tags |