1 19 20 package com.sslexplorer.properties.attributes; 21 22 import org.jdom.Element; 23 import org.jdom.JDOMException; 24 25 26 33 public class DefaultAttributeDefinition extends XMLAttributeDefinition { 34 40 public DefaultAttributeDefinition(Element element) throws JDOMException { 41 super(element); 42 } 43 44 64 65 public DefaultAttributeDefinition(int type, String name, String typeMeta, int category, String categoryLabel, String defaultValue, 66 int visibility, int sortOrder, String messageResourcesKey, boolean hidden, String label, String description, boolean system, boolean replaceable, String validationString) { 67 super(type, name, typeMeta, category, categoryLabel, defaultValue, 68 visibility, sortOrder, messageResourcesKey, hidden, label, description, system, replaceable, validationString); 69 } 70 } 71 | Popular Tags |