1 19 20 package org.netbeans.modules.xml.xam.ui.cookies; 21 22 import org.netbeans.modules.xml.xam.Component; 23 import org.openide.nodes.Node; 24 25 34 public interface ViewComponentCookie extends Node.Cookie { 35 36 39 public enum View { 40 41 SOURCE, 42 43 STRUCTURE, 44 45 DESIGN, 46 47 SUPER, 48 49 CURRENT, 50 } 51 52 59 public void view(View view, Component component, Object ... parameters); 60 61 67 public boolean canView(View view, Component component); 68 } 69 | Popular Tags |