1 31 32 package org.opencms.workplace.comparison; 33 34 39 public class CmsXmlContentElementComparison extends CmsElementComparison { 40 41 42 private String m_type; 43 44 51 public CmsXmlContentElementComparison(String locale, String name, String type) { 52 53 super(locale, name); 54 m_type = type; 55 } 56 57 62 public String getType() { 63 64 return m_type; 65 } 66 67 72 public void setType(String type) { 73 74 m_type = type; 75 } 76 77 } 78 | Popular Tags |