Searched refs:oldC (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DScrollPaneLayout.java191 * This method returns <code>newC</code>. If <code>oldC</code> is
195 * @param oldC the <code>Component</code> to replace
199 protected Component addSingletonComponent(Component oldC, Component newC) argument
201 if ((oldC != null) && (oldC != newC)) {
202 oldC.getParent().remove(oldC);
H A DJLabel.java1031 Component oldC = labelFor;
1033 firePropertyChange("labelFor", oldC, c);
1035 if (oldC instanceof JComponent) {
1036 ((JComponent)oldC).putClientProperty(LABELED_BY_PROPERTY, null);
/openjdk7/jdk/src/share/classes/java/beans/
H A DMetaData.java366 Collection oldC = (Collection) oldInstance;
368 return (oldC.size() == newC.size()) && oldC.containsAll(newC);
952 java.awt.Container oldC = (java.awt.Container)oldInstance;
953 java.awt.Component[] oldChildren = oldC.getComponents();
957 BorderLayout layout = ( oldC.getLayout() instanceof BorderLayout )
958 ? ( BorderLayout )oldC.getLayout()
1049 Object oldC = oldLayout.getLayoutComponent(constraints);
1052 if (oldC != null && newC == null) {
1054 new Object[] { oldC, constraint
[all...]

Completed in 62 milliseconds