public ExplItemConfigMetadataView() { super(); setName("silo.config.metadata.view.view"); setLabel(GuiResources.getGuiString("explorer.silo.config.metadata.view.view")); setPanelClass(PnlConfigDataViewViews.class); setAllowsChildren(false); setIcon(null); }
/** Creates a new instance of ContentsTableModel */ public NamespaceDetailsTableModel(boolean editable) { super(); setColumns( new TableColumn[] { new TableColumn( NAME, new Integer(120), editable, GuiResources.getGuiString("config.metadata.namespace.name")), new TableColumn( DATA_TYPE, new Integer(50), editable, GuiResources.getGuiString("config.metadata.schema.dataType")), new TableColumn( IS_QUERYABLE, new Integer(40), editable, GuiResources.getGuiString("config.metadata.schema.ns.queryable")) }); }