1 19 20 package com.sslexplorer.boot; 21 22 import java.util.Collection ; 23 24 32 public interface PropertyDefinitionCategory { 33 34 39 public int getId(); 40 41 46 public String getBundle(); 47 48 53 public String getImagePath(); 54 55 61 public PropertyDefinitionCategory addCategory(PropertyDefinitionCategory category); 62 63 69 70 public PropertyDefinitionCategory removeCategory(PropertyDefinitionCategory category); 71 72 77 public void setParent(PropertyDefinitionCategory parent); 78 79 84 public int size(); 85 86 92 public boolean contains(PropertyDefinitionCategory category); 93 94 99 public Collection <PropertyDefinitionCategory> getCategories(); 100 101 107 public void setEnabled(boolean enabled); 108 109 115 public boolean isEnabled(); 116 117 122 public PropertyClass getPropertyClass(); 123 124 129 public void setPropertyClass(PropertyClass propertyClass); 130 131 136 public PropertyDefinitionCategory getParent(); 137 138 143 public Collection <PropertyDefinition> getDefinitions(); 144 145 } | Popular Tags |