Searched defs:stack (Results 1 - 6 of 6) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/
H A DStackUtil.java32 * Removes the given element if it is at the top of the given stack.
37 * @param stack
41 * the element to remove from {@code stack}
46 public static <E> boolean popIfAtTop(Stackable<E> stack, E element) { argument
47 E e = stack.peekOrErr();
49 stack.pop();
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/view/
H A DWizardPanel.java48 private Stackable<Component> stack; field in class:WizardPanel
100 ReplacingStackPanel stack = new ReplacingStackPanel();
101 this.stack = stack;
104 settingsPanel.setContent(stack, false, false);
140 return stack;
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/
H A DCoreAdmSettingsTab.java56 private ReplacingStackPanel stack = new ReplacingStackPanel(); field in class:CoreAdmSettingsTab
78 return stack;
151 stack.push(panel);
152 setComponentStack(stack);
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/control/
H A DNavigator.java52 private LinkedList<Control> stack = new LinkedList<Control>(); field in class:Navigator
53 private List<Control> roStack = Collections.unmodifiableList(stack);
223 * of the navigation stack has not yet been set.
226 synchronized (stack) {
227 return stack.peekLast();
244 return getPathString(stack);
257 * a {@link Control} within the navigation stack to which
263 * navigate up the stack to {@code relativeTo}; if the root of
295 * if the navigation stack is empty and the next {@link
299 * if the navigation stack i
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/control/
H A DSwingControl.java54 private Stackable<Component> stack; field in class:SwingControl
138 * Component stack}, b) the just-started {@link Control} implements {@link
140 * this method adds that {@code Component} to the stack.
146 final Stackable<Component> stack = getComponentStack();
147 if (stack != null) {
158 stack.push(comp);
168 * Component stack}, b) the just-stopped {@link Control} implements {@link
169 * HasComponent}, and c) its {@code Component} is at the top of the stack,
170 * this method removes that {@code Component} from the stack.
176 final Stackable<Component> stack
536 setComponentStack(Stackable<Component> stack) argument
[all...]
H A DWizardControl.java62 public WizardRootControl(Stackable<Component> stack) { argument
67 setComponentStack(stack);
356 * stack, ignoring any errors.

Completed in 2362 milliseconds