Searched refs:visible (Results 1 - 25 of 86) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/sun/awt/shell/
H A DShellFolderColumnInfo.java34 private boolean visible; field in class:ShellFolderColumnInfo
51 Integer alignment, boolean visible,
57 this.visible = visible;
64 Integer alignment, boolean visible,
66 this(title, width, alignment, visible, sortOrder, comparator, false);
74 boolean visible) {
75 this(title, width, alignment, visible, null, null);
103 return visible;
106 public void setVisible(boolean visible) { argument
50 ShellFolderColumnInfo(String title, Integer width, Integer alignment, boolean visible, SortOrder sortOrder, Comparator comparator, boolean compareByColumn) argument
63 ShellFolderColumnInfo(String title, Integer width, Integer alignment, boolean visible, SortOrder sortOrder, Comparator comparator) argument
73 ShellFolderColumnInfo(String title, int width, int alignment, boolean visible) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DSecurityWarningWindow.java34 public void setVisible(boolean visible, boolean doSchedule); argument
H A DLWScrollBarPeer.java76 public void setValues(final int value, final int visible, final int minimum, argument
80 getDelegate().setValues(value, visible, minimum, maximum);
H A DPlatformWindow.java56 public void setVisible(boolean visible); argument
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DNoFramesView.java33 * NOFRAMES tag. The contents of the tag will only be visible
44 * visible.
51 visible = false;
56 * If this view is not visible, then it returns.
67 visible != ((JTextComponent)host).isEditable()) {
68 visible = ((JTextComponent)host).isEditable();
81 * view and all its child views are visible.
92 visible = ((JTextComponent)host).isEditable();
100 * whether the view is visible or not.
103 return visible;
172 boolean visible; field in class:NoFramesView
[all...]
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DScrollbarPeer.java44 * @param visible how much of the whole scale is visible
50 void setValues(int value, int visible, int minimum, int maximum); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DFieldVisitor.java75 * @param visible <tt>true</tt> if the annotation is visible at runtime.
79 AnnotationVisitor visitAnnotation(String desc, boolean visible); argument
H A DMethodVisitor.java101 * @param visible <tt>true</tt> if the annotation is visible at runtime.
105 AnnotationVisitor visitAnnotation(String desc, boolean visible); argument
112 * @param visible <tt>true</tt> if the annotation is visible at runtime.
119 boolean visible);
116 visitParameterAnnotation( int parameter, String desc, boolean visible) argument
H A DClassVisitor.java129 * @param visible <tt>true</tt> if the annotation is visible at runtime.
133 AnnotationVisitor visitAnnotation(String desc, boolean visible); argument
/openjdk7/jdk/src/share/classes/com/sun/beans/infos/
H A DComponentBeanInfo.java45 visible = new PropertyDescriptor("visible", beanClass),
49 visible.setHidden(true);
56 PropertyDescriptor[] rv = {name, background, foreground, font, enabled, visible, focusable };
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DFrameWrapper.java39 public void setVisible(boolean visible); argument
H A DJFrameWrapper.java43 public void setVisible(boolean visible) { frame.setVisible(visible); } argument
H A DJInternalFrameWrapper.java44 public void setVisible(boolean visible) { frame.setVisible(visible); } argument
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DSlidingSpinner.java92 void setVisible(boolean visible) { argument
93 this.label.setVisible(visible);
94 this.slider.setVisible(visible);
95 this.spinner.setVisible(visible);
H A DColorChooserPanel.java136 boolean visible = label != null;
137 this.text.setVisible(visible);
139 this.label.setVisible(visible);
140 if (visible) {
/openjdk7/jdk/src/solaris/native/sun/jdga/
H A Ddgalock.c381 pSurface->visible.lox = max(dlox, lox);
382 pSurface->visible.loy = max(dloy, loy);
383 pSurface->visible.hix = min(dhix, hix);
384 pSurface->visible.hiy = min(dhiy, hiy);
386 pSurface->visible.lox,
387 pSurface->visible.loy,
388 pSurface->visible.hix,
389 pSurface->visible.hiy));
463 pSurface->visible.lox = cliplox;
464 pSurface->visible
[all...]
H A Djdga.h111 * Location and size information of the visible portion of the
117 * rectangle is partially clipped and the remaining visible
122 JDgaBounds visible; member in struct:__anon1037
169 * If the indicated rendering region is not visible at all then this
171 * "visible" rectangle.
172 * If the indicated rendering region has a visible portion that cannot
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterDialogPeer.java54 public void setVisible(boolean visible) { argument
55 if (visible) {
H A DCWarningWindow.java122 public void setVisible(boolean visible, boolean doSchedule) { argument
134 if (visible) {
215 return visible;
220 public void setVisible(boolean visible) { argument
225 if (!visible) {
234 if (visible) {
240 this.visible = visible;
243 if (visible) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DScrollbar.java58 * can be used to represent the amount of text that is visible.
66 * is the <em>visible amount</em>. The horizontal scroll bar
75 * <code>maximum</code> minus the <code>visible amount</code>.
77 * 300 and the <code>visible amount</code> is 60, the actual maximum
318 * <td>visible amount</td>
319 * <td>visible amount of the scroll bar's range,
381 * initial value, visible amount, and minimum and maximum values.
393 * @param visible the visible amount of the scroll bar, typically
404 public Scrollbar(int orientation, int value, int visible, in argument
871 setValues(int value, int visible, int minimum, int maximum) argument
[all...]
H A DScrollPaneAdjustable.java99 * The size of the visible portion of this scrollbar.
195 * <code>visible</code> values. The scrollpane is the only one
199 void setSpan(int min, int max, int visible) { argument
203 visibleAmount = Math.min(visible, maximum - minimum);
205 blockIncrement = Math.max((int)(visible * .90), 1);
/openjdk7/jdk/test/javax/swing/JPopupMenu/6495920/
H A Dbug6495920.java57 public void setVisible(boolean visible) {
58 super.setVisible(visible);
59 throw new AssertionError(visible ? "show popup" : "hide popup");
/openjdk7/jdk/test/java/awt/FullScreen/SetFSWindow/
H A DFSFrame.java45 // Don't start the test until the window is visible
46 boolean visible = false; field in class:FSFrame
51 if (!visible && getWidth() != 0 && getHeight() != 0) {
52 visible = true;
173 if (visible) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultEditorKit.java1422 Rectangle visible = target.getVisibleRect();
1423 Rectangle newVis = new Rectangle(visible);
1427 visible, SwingConstants.VERTICAL, direction);
1428 int initialY = visible.y;
1445 initialY + scrollAmount, visible.height);
1449 if (visible.contains(dotBounds.x, dotBounds.y)) {
1450 // Dot is currently visible, base the new
1457 // Dot isn't visible, choose the top or the bottom
1465 x, newVis.y + visible.height));
1470 // Make sure the new visible locatio
1532 getAdjustedY(JTextComponent text, Rectangle visible, int index) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbar.java74 int width, height; // Dimensions of the visible part of the parent window
559 * visible amount </LI>
560 * <LI> The visible amount must be greater than 1 and less than or equal
566 * @param visible is the amount visible per page
570 synchronized void setValues(int value, int visible, int minimum, int maximum) { argument
574 if (visible > maximum - minimum) {
575 visible = maximum - minimum;
577 if (visible < 1) {
578 visible
603 setValues(int value, int visible, int minimum, int maximum, int unitSize, int blockSize) argument
[all...]

Completed in 94 milliseconds

1234