You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by nd...@apache.org on 2006/11/25 06:34:55 UTC

svn commit: r479087 - in /harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing: JComboBox.java JMenu.java JMenuBar.java JSpinner.java JTabbedPane.java JTable.java JTree.java ProgressMonitor.java

Author: ndbeyer
Date: Fri Nov 24 21:34:54 2006
New Revision: 479087

URL: http://svn.apache.org/viewvc?view=rev&rev=479087
Log:
Add NotImplementedException to throws clause

Modified:
    harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JComboBox.java
    harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenu.java
    harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenuBar.java
    harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JSpinner.java
    harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTabbedPane.java
    harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTable.java
    harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTree.java
    harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/ProgressMonitor.java

Modified: harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JComboBox.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JComboBox.java?view=diff&rev=479087&r1=479086&r2=479087
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JComboBox.java (original)
+++ harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JComboBox.java Fri Nov 24 21:34:54 2006
@@ -64,12 +64,12 @@
         }
 
         @Override
-        public int getAccessibleChildrenCount() {
+        public int getAccessibleChildrenCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleChild(int i) {
+        public Accessible getAccessibleChild(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
@@ -79,57 +79,57 @@
         }
 
         @Override
-        public AccessibleStateSet getAccessibleStateSet() {
+        public AccessibleStateSet getAccessibleStateSet() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleAction getAccessibleAction() {
+        public AccessibleAction getAccessibleAction() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getAccessibleActionDescription(int i) {
+        public String getAccessibleActionDescription(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleActionCount() {
+        public int getAccessibleActionCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean doAccessibleAction(int i) {
+        public boolean doAccessibleAction(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleSelection getAccessibleSelection() {
+        public AccessibleSelection getAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleSelectionCount() {
+        public int getAccessibleSelectionCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleSelection(int i) {
+        public Accessible getAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean isAccessibleChildSelected(int i) {
+        public boolean isAccessibleChildSelected(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void addAccessibleSelection(int i) {
+        public void addAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void removeAccessibleSelection(int i) {
+        public void removeAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void clearAccessibleSelection() {
+        public void clearAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void selectAllAccessibleSelection() {
+        public void selectAllAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
     }

Modified: harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenu.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenu.java?view=diff&rev=479087&r1=479086&r2=479087
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenu.java (original)
+++ harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenu.java Fri Nov 24 21:34:54 2006
@@ -51,21 +51,21 @@
     protected class AccessibleJMenu extends AccessibleJMenuItem implements AccessibleSelection {
         private static final long serialVersionUID = -7871723353224195081L;
 
-        public void addAccessibleSelection(int i) {
+        public void addAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void clearAccessibleSelection() {
+        public void clearAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public int getAccessibleChildrenCount() {
+        public int getAccessibleChildrenCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleChild(int i) {
+        public Accessible getAccessibleChild(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
@@ -75,27 +75,27 @@
         }
 
         @Override
-        public AccessibleSelection getAccessibleSelection() {
+        public AccessibleSelection getAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleSelection(int i) {
+        public Accessible getAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleSelectionCount() {
+        public int getAccessibleSelectionCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean isAccessibleChildSelected(int i) {
+        public boolean isAccessibleChildSelected(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void removeAccessibleSelection(int i) {
+        public void removeAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void selectAllAccessibleSelection() {
+        public void selectAllAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
     }

Modified: harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenuBar.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenuBar.java?view=diff&rev=479087&r1=479086&r2=479087
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenuBar.java (original)
+++ harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JMenuBar.java Fri Nov 24 21:34:54 2006
@@ -50,19 +50,19 @@
             AccessibleSelection {
         private static final long serialVersionUID = 1L;
 
-        public void addAccessibleSelection(int i) {
+        public void addAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void clearAccessibleSelection() {
+        public void clearAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleSelection(int i) {
+        public Accessible getAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleSelectionCount() {
+        public int getAccessibleSelectionCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
@@ -72,24 +72,24 @@
         }
 
         @Override
-        public AccessibleSelection getAccessibleSelection() {
+        public AccessibleSelection getAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleStateSet getAccessibleStateSet() {
+        public AccessibleStateSet getAccessibleStateSet() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean isAccessibleChildSelected(int i) {
+        public boolean isAccessibleChildSelected(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void removeAccessibleSelection(int i) {
+        public void removeAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void selectAllAccessibleSelection() {
+        public void selectAllAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
     }

Modified: harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JSpinner.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JSpinner.java?view=diff&rev=479087&r1=479086&r2=479087
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JSpinner.java (original)
+++ harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JSpinner.java Fri Nov 24 21:34:54 2006
@@ -73,145 +73,147 @@
         protected AccessibleJSpinner() {
         }
 
-        public void stateChanged(ChangeEvent e) {
+        public void stateChanged(ChangeEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleRole getAccessibleRole() {
+        public AccessibleRole getAccessibleRole() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public int getAccessibleChildrenCount() {
+        public int getAccessibleChildrenCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleChild(int i) {
+        public Accessible getAccessibleChild(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleAction getAccessibleAction() {
+        public AccessibleAction getAccessibleAction() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleText getAccessibleText() {
+        public AccessibleText getAccessibleText() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleValue getAccessibleValue() {
+        public AccessibleValue getAccessibleValue() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Number getCurrentAccessibleValue() {
+        public Number getCurrentAccessibleValue() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean setCurrentAccessibleValue(Number n) {
+        public boolean setCurrentAccessibleValue(Number n) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Number getMinimumAccessibleValue() {
+        public Number getMinimumAccessibleValue() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Number getMaximumAccessibleValue() {
+        public Number getMaximumAccessibleValue() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleActionCount() {
+        public int getAccessibleActionCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getAccessibleActionDescription(int i) {
+        public String getAccessibleActionDescription(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean doAccessibleAction(int i) {
+        public boolean doAccessibleAction(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getIndexAtPoint(Point p) {
+        public int getIndexAtPoint(Point p) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Rectangle getCharacterBounds(int i) {
+        public Rectangle getCharacterBounds(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getCharCount() {
+        public int getCharCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getCaretPosition() {
+        public int getCaretPosition() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getAtIndex(int part, int index) {
+        public String getAtIndex(int part, int index) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getAfterIndex(int part, int index) {
+        public String getAfterIndex(int part, int index) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getBeforeIndex(int part, int index) {
+        public String getBeforeIndex(int part, int index) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public AttributeSet getCharacterAttribute(int i) {
+        public AttributeSet getCharacterAttribute(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getSelectionStart() {
+        public int getSelectionStart() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getSelectionEnd() {
+        public int getSelectionEnd() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getSelectedText() {
+        public String getSelectedText() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void setTextContents(String s) {
+        public void setTextContents(String s) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void insertTextAtIndex(int index, String s) {
+        public void insertTextAtIndex(int index, String s) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getTextRange(int startIndex, int endIndex) {
+        public String getTextRange(int startIndex, int endIndex) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void delete(int startIndex, int endIndex) {
+        public void delete(int startIndex, int endIndex) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void cut(int startIndex, int endIndex) {
+        public void cut(int startIndex, int endIndex) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void paste(int startIndex) {
+        public void paste(int startIndex) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void replaceText(int startIndex, int endIndex, String s) {
+        public void replaceText(int startIndex, int endIndex, String s)
+                throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void selectText(int startIndex, int endIndex) {
+        public void selectText(int startIndex, int endIndex) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void setAttributes(int startIndex, int endIndex, AttributeSet as) {
+        public void setAttributes(int startIndex, int endIndex, AttributeSet as)
+                throws NotImplementedException {
             throw new NotImplementedException();
         }
     }

Modified: harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTabbedPane.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTabbedPane.java?view=diff&rev=479087&r1=479086&r2=479087
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTabbedPane.java (original)
+++ harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTabbedPane.java Fri Nov 24 21:34:54 2006
@@ -57,60 +57,60 @@
         public AccessibleJTabbedPane() {
         }
 
-        public void addAccessibleSelection(int i) {
+        public void addAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void clearAccessibleSelection() {
+        public void clearAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleAt(Point p) {
+        public Accessible getAccessibleAt(Point p) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleChild(int i) {
+        public Accessible getAccessibleChild(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public int getAccessibleChildrenCount() {
+        public int getAccessibleChildrenCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleRole getAccessibleRole() {
+        public AccessibleRole getAccessibleRole() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleSelection getAccessibleSelection() {
+        public AccessibleSelection getAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleSelection(int i) {
+        public Accessible getAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleSelectionCount() {
+        public int getAccessibleSelectionCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean isAccessibleChildSelected(int i) {
+        public boolean isAccessibleChildSelected(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void removeAccessibleSelection(int i) {
+        public void removeAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void selectAllAccessibleSelection() {
+        public void selectAllAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void stateChanged(ChangeEvent e) {
+        public void stateChanged(ChangeEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
     }

Modified: harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTable.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTable.java?view=diff&rev=479087&r1=479086&r2=479087
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTable.java (original)
+++ harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTable.java Fri Nov 24 21:34:54 2006
@@ -111,209 +111,212 @@
 
         protected class AccessibleJTableCell extends AccessibleContext implements Accessible,
                 AccessibleComponent {
-            public AccessibleJTableCell(JTable t, int r, int c, int i) {
+            public AccessibleJTableCell(JTable t, int r, int c, int i)
+                    throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public AccessibleContext getAccessibleContext() {
+            public AccessibleContext getAccessibleContext() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public String getAccessibleName() {
+            public String getAccessibleName() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public void setAccessibleName(String s) {
+            public void setAccessibleName(String s) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public String getAccessibleDescription() {
+            public String getAccessibleDescription() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public void setAccessibleDescription(String s) {
+            public void setAccessibleDescription(String s) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleRole getAccessibleRole() {
+            public AccessibleRole getAccessibleRole() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleStateSet getAccessibleStateSet() {
+            public AccessibleStateSet getAccessibleStateSet() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public Accessible getAccessibleParent() {
+            public Accessible getAccessibleParent() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public int getAccessibleIndexInParent() {
+            public int getAccessibleIndexInParent() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public int getAccessibleChildrenCount() {
+            public int getAccessibleChildrenCount() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public Accessible getAccessibleChild(int i) {
+            public Accessible getAccessibleChild(int i) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public Locale getLocale() {
+            public Locale getLocale() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public void addPropertyChangeListener(PropertyChangeListener l) {
+            public void addPropertyChangeListener(PropertyChangeListener l)
+                    throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public void removePropertyChangeListener(PropertyChangeListener l) {
+            public void removePropertyChangeListener(PropertyChangeListener l)
+                    throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleAction getAccessibleAction() {
+            public AccessibleAction getAccessibleAction() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleComponent getAccessibleComponent() {
+            public AccessibleComponent getAccessibleComponent() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleSelection getAccessibleSelection() {
+            public AccessibleSelection getAccessibleSelection() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleText getAccessibleText() {
+            public AccessibleText getAccessibleText() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleValue getAccessibleValue() {
+            public AccessibleValue getAccessibleValue() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Color getBackground() {
+            public Color getBackground() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setBackground(Color c) {
+            public void setBackground(Color c) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Color getForeground() {
+            public Color getForeground() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setForeground(Color c) {
+            public void setForeground(Color c) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Cursor getCursor() {
+            public Cursor getCursor() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setCursor(Cursor c) {
+            public void setCursor(Cursor c) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Font getFont() {
+            public Font getFont() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setFont(Font f) {
+            public void setFont(Font f) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public FontMetrics getFontMetrics(Font f) {
+            public FontMetrics getFontMetrics(Font f) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean isEnabled() {
+            public boolean isEnabled() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setEnabled(boolean b) {
+            public void setEnabled(boolean b) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean isVisible() {
+            public boolean isVisible() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setVisible(boolean b) {
+            public void setVisible(boolean b) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean isShowing() {
+            public boolean isShowing() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean contains(Point p) {
+            public boolean contains(Point p) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Point getLocationOnScreen() {
+            public Point getLocationOnScreen() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Point getLocation() {
+            public Point getLocation() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setLocation(Point p) {
+            public void setLocation(Point p) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Rectangle getBounds() {
+            public Rectangle getBounds() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setBounds(Rectangle r) {
+            public void setBounds(Rectangle r) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Dimension getSize() {
+            public Dimension getSize() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setSize(Dimension d) {
+            public void setSize(Dimension d) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Accessible getAccessibleAt(Point p) {
+            public Accessible getAccessibleAt(Point p) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean isFocusTraversable() {
+            public boolean isFocusTraversable() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void requestFocus() {
+            public void requestFocus() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void addFocusListener(FocusListener l) {
+            public void addFocusListener(FocusListener l) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void removeFocusListener(FocusListener l) {
+            public void removeFocusListener(FocusListener l) throws NotImplementedException {
                 throw new NotImplementedException();
             }
         }
@@ -330,246 +333,248 @@
             protected int lastColumn;
 
             protected AccessibleJTableModelChange(int type, int firstRow, int lastRow,
-                    int firstColumn, int lastColumn) {
+                    int firstColumn, int lastColumn) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public int getType() {
+            public int getType() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public int getFirstRow() {
+            public int getFirstRow() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public int getLastRow() {
+            public int getLastRow() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public int getFirstColumn() {
+            public int getFirstColumn() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public int getLastColumn() {
+            public int getLastColumn() throws NotImplementedException {
                 throw new NotImplementedException();
             }
         }
 
-        public void propertyChange(PropertyChangeEvent e) {
+        public void propertyChange(PropertyChangeEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void tableChanged(TableModelEvent e) {
+        public void tableChanged(TableModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void tableRowsInserted(TableModelEvent e) {
+        public void tableRowsInserted(TableModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void tableRowsDeleted(TableModelEvent e) {
+        public void tableRowsDeleted(TableModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void columnAdded(TableColumnModelEvent e) {
+        public void columnAdded(TableColumnModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void columnRemoved(TableColumnModelEvent e) {
+        public void columnRemoved(TableColumnModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void columnMoved(TableColumnModelEvent e) {
+        public void columnMoved(TableColumnModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void columnMarginChanged(ChangeEvent e) {
+        public void columnMarginChanged(ChangeEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void columnSelectionChanged(ListSelectionEvent e) {
+        public void columnSelectionChanged(ListSelectionEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void editingStopped(ChangeEvent e) {
+        public void editingStopped(ChangeEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void editingCanceled(ChangeEvent e) {
+        public void editingCanceled(ChangeEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void valueChanged(ListSelectionEvent e) {
+        public void valueChanged(ListSelectionEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleSelection getAccessibleSelection() {
+        public AccessibleSelection getAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleRole getAccessibleRole() {
+        public AccessibleRole getAccessibleRole() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleAt(Point p) {
+        public Accessible getAccessibleAt(Point p) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public int getAccessibleChildrenCount() {
+        public int getAccessibleChildrenCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleChild(int i) {
+        public Accessible getAccessibleChild(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleSelectionCount() {
+        public int getAccessibleSelectionCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleSelection(int i) {
+        public Accessible getAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean isAccessibleChildSelected(int i) {
+        public boolean isAccessibleChildSelected(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void addAccessibleSelection(int i) {
+        public void addAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void removeAccessibleSelection(int i) {
+        public void removeAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void clearAccessibleSelection() {
+        public void clearAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void selectAllAccessibleSelection() {
+        public void selectAllAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleRow(int index) {
+        public int getAccessibleRow(int index) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleColumn(int index) {
+        public int getAccessibleColumn(int index) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleIndex(int r, int c) {
+        public int getAccessibleIndex(int r, int c) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleTable getAccessibleTable() {
+        public AccessibleTable getAccessibleTable() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleCaption() {
+        public Accessible getAccessibleCaption() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void setAccessibleCaption(Accessible a) {
+        public void setAccessibleCaption(Accessible a) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleSummary() {
+        public Accessible getAccessibleSummary() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void setAccessibleSummary(Accessible a) {
+        public void setAccessibleSummary(Accessible a) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleRowCount() {
+        public int getAccessibleRowCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleColumnCount() {
+        public int getAccessibleColumnCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleAt(int r, int c) {
+        public Accessible getAccessibleAt(int r, int c) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleRowExtentAt(int r, int c) {
+        public int getAccessibleRowExtentAt(int r, int c) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleColumnExtentAt(int r, int c) {
+        public int getAccessibleColumnExtentAt(int r, int c) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public AccessibleTable getAccessibleRowHeader() {
+        public AccessibleTable getAccessibleRowHeader() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void setAccessibleRowHeader(AccessibleTable a) {
+        public void setAccessibleRowHeader(AccessibleTable a) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public AccessibleTable getAccessibleColumnHeader() {
+        public AccessibleTable getAccessibleColumnHeader() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void setAccessibleColumnHeader(AccessibleTable a) {
+        public void setAccessibleColumnHeader(AccessibleTable a) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleRowDescription(int r) {
+        public Accessible getAccessibleRowDescription(int r) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void setAccessibleRowDescription(int r, Accessible a) {
+        public void setAccessibleRowDescription(int r, Accessible a)
+                throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleColumnDescription(int c) {
+        public Accessible getAccessibleColumnDescription(int c) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void setAccessibleColumnDescription(int c, Accessible a) {
+        public void setAccessibleColumnDescription(int c, Accessible a)
+                throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean isAccessibleSelected(int r, int c) {
+        public boolean isAccessibleSelected(int r, int c) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean isAccessibleRowSelected(int r) {
+        public boolean isAccessibleRowSelected(int r) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean isAccessibleColumnSelected(int c) {
+        public boolean isAccessibleColumnSelected(int c) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int[] getSelectedAccessibleRows() {
+        public int[] getSelectedAccessibleRows() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int[] getSelectedAccessibleColumns() {
+        public int[] getSelectedAccessibleColumns() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleRowAtIndex(int i) {
+        public int getAccessibleRowAtIndex(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleColumnAtIndex(int i) {
+        public int getAccessibleColumnAtIndex(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleIndexAt(int r, int c) {
+        public int getAccessibleIndexAt(int r, int c) throws NotImplementedException {
             throw new NotImplementedException();
         }
     }

Modified: harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTree.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTree.java?view=diff&rev=479087&r1=479086&r2=479087
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTree.java (original)
+++ harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/JTree.java Fri Nov 24 21:34:54 2006
@@ -93,253 +93,256 @@
 
         protected class AccessibleJTreeNode extends AccessibleContext implements Accessible,
                 AccessibleComponent, AccessibleSelection, AccessibleAction {
-            public AccessibleJTreeNode(JTree t, TreePath p, Accessible ap) {
+            public AccessibleJTreeNode(JTree t, TreePath p, Accessible ap)
+                    throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public AccessibleContext getAccessibleContext() {
+            public AccessibleContext getAccessibleContext() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public String getAccessibleName() {
+            public String getAccessibleName() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public void setAccessibleName(String s) {
+            public void setAccessibleName(String s) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public String getAccessibleDescription() {
+            public String getAccessibleDescription() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public void setAccessibleDescription(String s) {
+            public void setAccessibleDescription(String s) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleRole getAccessibleRole() {
+            public AccessibleRole getAccessibleRole() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleStateSet getAccessibleStateSet() {
+            public AccessibleStateSet getAccessibleStateSet() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public Accessible getAccessibleParent() {
+            public Accessible getAccessibleParent() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public int getAccessibleIndexInParent() {
+            public int getAccessibleIndexInParent() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public int getAccessibleChildrenCount() {
+            public int getAccessibleChildrenCount() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public Accessible getAccessibleChild(int i) {
+            public Accessible getAccessibleChild(int i) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public Locale getLocale() {
+            public Locale getLocale() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public void addPropertyChangeListener(PropertyChangeListener l) {
+            public void addPropertyChangeListener(PropertyChangeListener l)
+                    throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public void removePropertyChangeListener(PropertyChangeListener l) {
+            public void removePropertyChangeListener(PropertyChangeListener l)
+                    throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleAction getAccessibleAction() {
+            public AccessibleAction getAccessibleAction() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleComponent getAccessibleComponent() {
+            public AccessibleComponent getAccessibleComponent() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleSelection getAccessibleSelection() {
+            public AccessibleSelection getAccessibleSelection() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleText getAccessibleText() {
+            public AccessibleText getAccessibleText() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
             @Override
-            public AccessibleValue getAccessibleValue() {
+            public AccessibleValue getAccessibleValue() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Color getBackground() {
+            public Color getBackground() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setBackground(Color c) {
+            public void setBackground(Color c) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Color getForeground() {
+            public Color getForeground() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setForeground(Color c) {
+            public void setForeground(Color c) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Cursor getCursor() {
+            public Cursor getCursor() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setCursor(Cursor c) {
+            public void setCursor(Cursor c) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Font getFont() {
+            public Font getFont() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setFont(Font f) {
+            public void setFont(Font f) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public FontMetrics getFontMetrics(Font f) {
+            public FontMetrics getFontMetrics(Font f) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean isEnabled() {
+            public boolean isEnabled() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setEnabled(boolean b) {
+            public void setEnabled(boolean b) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean isVisible() {
+            public boolean isVisible() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setVisible(boolean b) {
+            public void setVisible(boolean b) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean isShowing() {
+            public boolean isShowing() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean contains(Point p) {
+            public boolean contains(Point p) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Point getLocationOnScreen() {
+            public Point getLocationOnScreen() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            protected Point getLocationInJTree() {
+            protected Point getLocationInJTree() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Point getLocation() {
+            public Point getLocation() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setLocation(Point p) {
+            public void setLocation(Point p) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Rectangle getBounds() {
+            public Rectangle getBounds() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setBounds(Rectangle r) {
+            public void setBounds(Rectangle r) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Dimension getSize() {
+            public Dimension getSize() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void setSize(Dimension d) {
+            public void setSize(Dimension d) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Accessible getAccessibleAt(Point p) {
+            public Accessible getAccessibleAt(Point p) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean isFocusTraversable() {
+            public boolean isFocusTraversable() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void requestFocus() {
+            public void requestFocus() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void addFocusListener(FocusListener l) {
+            public void addFocusListener(FocusListener l) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void removeFocusListener(FocusListener l) {
+            public void removeFocusListener(FocusListener l) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public int getAccessibleSelectionCount() {
+            public int getAccessibleSelectionCount() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public Accessible getAccessibleSelection(int i) {
+            public Accessible getAccessibleSelection(int i) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean isAccessibleChildSelected(int i) {
+            public boolean isAccessibleChildSelected(int i) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void addAccessibleSelection(int i) {
+            public void addAccessibleSelection(int i) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void removeAccessibleSelection(int i) {
+            public void removeAccessibleSelection(int i) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void clearAccessibleSelection() {
+            public void clearAccessibleSelection() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public void selectAllAccessibleSelection() {
+            public void selectAllAccessibleSelection() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public int getAccessibleActionCount() {
+            public int getAccessibleActionCount() throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public String getAccessibleActionDescription(int i) {
+            public String getAccessibleActionDescription(int i) throws NotImplementedException {
                 throw new NotImplementedException();
             }
 
-            public boolean doAccessibleAction(int i) {
+            public boolean doAccessibleAction(int i) throws NotImplementedException {
                 throw new NotImplementedException();
             }
         }
@@ -348,93 +351,93 @@
             super();
         }
 
-        public void valueChanged(TreeSelectionEvent e) {
+        public void valueChanged(TreeSelectionEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void fireVisibleDataPropertyChange() {
+        public void fireVisibleDataPropertyChange() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void treeNodesChanged(TreeModelEvent e) {
+        public void treeNodesChanged(TreeModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void treeNodesInserted(TreeModelEvent e) {
+        public void treeNodesInserted(TreeModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void treeNodesRemoved(TreeModelEvent e) {
+        public void treeNodesRemoved(TreeModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void treeStructureChanged(TreeModelEvent e) {
+        public void treeStructureChanged(TreeModelEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void treeCollapsed(TreeExpansionEvent e) {
+        public void treeCollapsed(TreeExpansionEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void treeExpanded(TreeExpansionEvent e) {
+        public void treeExpanded(TreeExpansionEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleRole getAccessibleRole() {
+        public AccessibleRole getAccessibleRole() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleAt(Point p) {
+        public Accessible getAccessibleAt(Point p) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public int getAccessibleChildrenCount() {
+        public int getAccessibleChildrenCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleChild(int i) {
+        public Accessible getAccessibleChild(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public int getAccessibleIndexInParent() {
+        public int getAccessibleIndexInParent() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleSelection getAccessibleSelection() {
+        public AccessibleSelection getAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getAccessibleSelectionCount() {
+        public int getAccessibleSelectionCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Accessible getAccessibleSelection(int i) {
+        public Accessible getAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public boolean isAccessibleChildSelected(int i) {
+        public boolean isAccessibleChildSelected(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void addAccessibleSelection(int i) {
+        public void addAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void removeAccessibleSelection(int i) {
+        public void removeAccessibleSelection(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void clearAccessibleSelection() {
+        public void clearAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void selectAllAccessibleSelection() {
+        public void selectAllAccessibleSelection() throws NotImplementedException {
             throw new NotImplementedException();
         }
     }

Modified: harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/ProgressMonitor.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/ProgressMonitor.java?view=diff&rev=479087&r1=479086&r2=479087
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/ProgressMonitor.java (original)
+++ harmony/enhanced/classlib/trunk/modules/swing/src/main/java/common/javax/swing/ProgressMonitor.java Fri Nov 24 21:34:54 2006
@@ -55,115 +55,116 @@
         protected AccessibleProgressMonitor() {
         }
 
-        public void stateChanged(ChangeEvent e) {
+        public void stateChanged(ChangeEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public void propertyChange(PropertyChangeEvent e) {
+        public void propertyChange(PropertyChangeEvent e) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public String getAccessibleName() {
+        public String getAccessibleName() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public String getAccessibleDescription() {
+        public String getAccessibleDescription() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleRole getAccessibleRole() {
+        public AccessibleRole getAccessibleRole() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleStateSet getAccessibleStateSet() {
+        public AccessibleStateSet getAccessibleStateSet() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleParent() {
+        public Accessible getAccessibleParent() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public int getAccessibleIndexInParent() {
+        public int getAccessibleIndexInParent() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public int getAccessibleChildrenCount() {
+        public int getAccessibleChildrenCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Accessible getAccessibleChild(int i) {
+        public Accessible getAccessibleChild(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public Locale getLocale() throws IllegalComponentStateException {
+        public Locale getLocale() throws IllegalComponentStateException,
+                NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleComponent getAccessibleComponent() {
+        public AccessibleComponent getAccessibleComponent() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleValue getAccessibleValue() {
+        public AccessibleValue getAccessibleValue() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
         @Override
-        public AccessibleText getAccessibleText() {
+        public AccessibleText getAccessibleText() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getIndexAtPoint(Point p) {
+        public int getIndexAtPoint(Point p) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public Rectangle getCharacterBounds(int i) {
+        public Rectangle getCharacterBounds(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getCharCount() {
+        public int getCharCount() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getCaretPosition() {
+        public int getCaretPosition() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getAtIndex(int part, int index) {
+        public String getAtIndex(int part, int index) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getAfterIndex(int part, int index) {
+        public String getAfterIndex(int part, int index) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getBeforeIndex(int part, int index) {
+        public String getBeforeIndex(int part, int index) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public AttributeSet getCharacterAttribute(int i) {
+        public AttributeSet getCharacterAttribute(int i) throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getSelectionStart() {
+        public int getSelectionStart() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public int getSelectionEnd() {
+        public int getSelectionEnd() throws NotImplementedException {
             throw new NotImplementedException();
         }
 
-        public String getSelectedText() {
+        public String getSelectedText() throws NotImplementedException {
             throw new NotImplementedException();
         }
     }