@Retention(value=RUNTIME) @Target(value=FIELD) public @interface WorkbenchPanel
WorkbenchPerspective
, and it must target a
field that implements the GWT HasWidgets interface. Further, the class this annotation is used in must not have a
method annotated with Perspective
. See WorkbenchPerspective
for details.public abstract String[] parts
To specify a PlaceRequest with parameters, use standard URL query syntax:
@WorkbenchPanel(parts = "MyPlaceID?param1=val1&param2=val2")
Special characters can be escaped using URL encoding: for '%' use '%25'; for '&' use '%26'; for '=' use '%3d'; for '?' use '%3f'.
public abstract Class<?> panelType
public abstract boolean isDefault
Copyright © 2012–2019 JBoss by Red Hat. All rights reserved.