1 19 package org.netbeans.modules.xml.tax.beans.editor; 20 21 27 public class StandaloneEditor extends NullChoicePropertyEditor { 28 29 30 private static String [] items; 31 32 33 37 38 public StandaloneEditor () { 39 super (getItems()); 40 } 41 42 43 47 49 public static String [] getItems () { 50 if ( items == null ) { 51 items = new String [] { DEFAULT_NULL, "yes", "no" }; } 53 return items; 54 } 55 56 } 57 | Popular Tags |