GridAbstract

All top-level page layout classes should implement this interface.

It is used by the LayoutService as a common based type for any layouts read in from XML.

API

GridAbstract.java
class GridAbstract {
  Class<?> getDomainClass()
  void setDomainClass(Class<?> domainClass)
  String getTnsAndSchemaLocation()
  void setTnsAndSchemaLocation(String tnsAndSchemaLocation)
  boolean isFallback()
  void setFallback(boolean fallback)
  boolean isNormalized()
  void setNormalized(boolean normalized)
  LinkedHashMap<String, PropertyLayoutData> getAllPropertiesById()
  LinkedHashMap<String, CollectionLayoutData> getAllCollectionsById()
  LinkedHashMap<String, ActionLayoutData> getAllActionsById()
  LinkedHashMap<String, FieldSet> getAllFieldSetsByName()
}