Searched refs:Container (Results 1 - 25 of 502) sorted by relevance

1234567891011>>

/openjdk9/jdk/src/java.desktop/share/classes/java/beans/beancontext/
H A DBeanContextContainerProxy.java28 import java.awt.Container;
32 * This interface is implemented by BeanContexts' that have an AWT Container
46 * Gets the {@code java.awt.Container} associated
48 * @return the {@code java.awt.Container} associated
51 Container getContainer();
/openjdk9/langtools/test/tools/javac/T8020997/
H A DCannotCompileRepeatedAnnoTest.java38 @Repeatable(Container.class)
43 @interface Container{ interface
/openjdk9/langtools/test/tools/javac/annotations/repeatingAnnotations/
H A DDefaultTargetTypeParameter.java35 @interface Container { interface
39 @Repeatable(Container.class)
H A DDefaultTargetTypeUse.java35 @interface Container { interface
39 @Repeatable(Container.class)
H A DDefaultTarget.java42 @interface Container { interface
46 @Repeatable(Container.class)
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/server/
H A DThreadLocalContainerResolver.java35 * sections that run with a Container must use the following pattern:
38 * Container old = ContainerResolver.getDefault().enterContainer(myContainer);
49 private ThreadLocal<Container> containerThreadLocal = new ThreadLocal<Container>() {
51 protected Container initialValue() {
52 return Container.NONE;
56 public Container getContainer() {
62 * @param container Container to set
65 public Container enterContainer(Container containe
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/
H A DLayoutManager2.java41 * @see Container
64 public Dimension maximumLayoutSize(Container target);
76 public float getLayoutAlignmentX(Container target);
88 public float getLayoutAlignmentY(Container target);
95 public void invalidateLayout(Container target);
H A DLayoutManager.java29 * {@code Container}s.
37 * @see Container
70 Dimension preferredLayoutSize(Container parent);
81 Dimension minimumLayoutSize(Container parent);
87 void layoutContainer(Container parent);
H A DFocusTraversalPolicy.java60 * @see Container#setFocusTraversalPolicy
61 * @see Container#getFocusTraversalPolicy
62 * @see Container#setFocusCycleRoot
63 * @see Container#isFocusCycleRoot
64 * @see Container#setFocusTraversalPolicyProvider
65 * @see Container#isFocusTraversalPolicyProvider
87 public abstract Component getComponentAfter(Container aContainer,
105 public abstract Component getComponentBefore(Container aContainer,
119 public abstract Component getFirstComponent(Container aContainer);
132 public abstract Component getLastComponent(Container aContaine
[all...]
/openjdk9/jdk/make/src/classes/build/tools/cldrconverter/
H A DContainer.java28 class Container { class
30 private final Container parent;
32 Container(String qName, Container parent) { method in class:Container
43 Container getParent() {
H A DIgnoredContainer.java28 class IgnoredContainer extends Container {
30 IgnoredContainer(String qName, Container parent) {
H A DAliasEntry.java29 AliasEntry(String qName, Container parent, String key) {
33 AliasEntry(String qName, Container parent, String key, String value) {
H A DEntry.java28 abstract class Entry<T> extends Container {
31 Entry(String qName, Container parent, String key) {
H A DKeyContainer.java32 class KeyContainer extends Container {
35 KeyContainer(String qName, Container parent, String key) {
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/event/
H A DAncestorEvent.java61 Container ancestor;
62 Container ancestorParent;
72 * @param ancestor a Container object specifying the ancestor-component
74 * @param ancestorParent a Container object specifying the ancestor's parent
76 public AncestorEvent(JComponent source, int id, Container ancestor, Container ancestorParent) {
85 * @return the {@code Container} object specifying the ancestor component
87 public Container getAncestor() {
96 * @return the {@code Container} object specifying the ancestor's parent
98 public Container getAncestorParen
[all...]
/openjdk9/jdk/test/java/lang/annotation/repeatingAnnotations/subpackage/
H A DContainer.java29 public @interface Container { interface
H A DContainee.java29 @Repeatable(Container.class)
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/
H A DRootPaneContainer.java29 import java.awt.Container;
38 * public Container getContentPane() {
108 * @param contentPane the Container to use for the contents of this
113 void setContentPane(Container contentPane);
122 Container getContentPane();
126 * A Container that manages the contentPane and in some cases a menu bar.
/openjdk9/jdk/test/java/beans/XMLEncoder/
H A DTest5023552.java47 encoder.setPersistenceDelegate(Container.class, new PersistenceDelegate() {
49 Container container = (Container) oldInstance;
57 public Container create(Component component) {
58 return new Container(component);
62 public static final class Container { class in class:Test5023552
65 public Container(Component component) { method in class:Test5023552.Container
/openjdk9/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DContainerOperator.java26 import java.awt.Container;
54 public class ContainerOperator<T extends Container> extends ComponentOperator
66 * @param b Container component.
68 public ContainerOperator(Container b) {
82 this((Container) cont.
107 this((Container) waitComponent(cont,
125 * Searches Container in container.
127 * @param cont Container to search component in.
130 * @return Container instance or null if component was not found.
132 public static Container findContaine
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DViewFactory.java27 import java.awt.Container;
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/event/
H A DContainerEvent.java28 import java.awt.Container;
35 * Container events are provided for notification purposes ONLY;
55 * @see <a href="http://docs.oracle.com/javase/tutorial/uiswing/events/containerlistener.html">Tutorial: Writing a Container Listener</a>
85 * removed from the Container.
122 * @return the {@code Container} object that originated
124 * {@code Container}.
126 public Container getContainer() {
127 return (source instanceof Container) ? (Container)source : null;
/openjdk9/jdk/test/javax/swing/Headless/
H A DHeadlessOverlayLayout.java36 OverlayLayout msm = new OverlayLayout(new Container());
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/spi/
H A DWSToolsObjectFactory.java29 import com.sun.xml.internal.ws.api.server.Container;
62 public abstract boolean wsimport(OutputStream logStream, Container container, String[] args);
70 * @see #wsimport(OutputStream, Container, String[])
73 return wsimport(logStream, Container.NONE, args);
87 public abstract boolean wsgen(OutputStream logStream, Container container, String[] args);
94 * @see #wsgen(OutputStream, Container, String[])
97 return wsgen(logStream, Container.NONE, args);
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DDefaultMenuLayout.java31 import java.awt.Container;
55 public DefaultMenuLayout(Container target, int axis) {
59 public Dimension preferredLayoutSize(Container target) {

Completed in 106 milliseconds

1234567891011>>