diff options
author | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-17 09:09:39 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-17 09:09:39 +0000 |
commit | 6e827a37186ba324bc01b0762a8a1fbe4a8342da (patch) | |
tree | d65f60a531a96d2b940f636bab72d0d1e4425868 | |
parent | 783e29899b5bbeccf67a8460c0e10d91cb45e2fa (diff) | |
download | gcc-6e827a37186ba324bc01b0762a8a1fbe4a8342da.zip gcc-6e827a37186ba324bc01b0762a8a1fbe4a8342da.tar.gz gcc-6e827a37186ba324bc01b0762a8a1fbe4a8342da.tar.bz2 |
2003-03-17 Michael Koch
* javax/print/attribute/Attribute.java,
javax/print/attribute/AttributeSet.java,
javax/print/attribute/PrintRequestAttributeSet.java:
New files.
* Makefile.am
(awt_java_source_files): Added new files:
javax/print/attribute/Attribute.java
javax/print/attribute/AttributeSet.java
javax/print/attribute/PrintRequestAttributeSet.java
* Makefile.in: Regenerated.
From-SVN: r64472
-rw-r--r-- | libjava/ChangeLog | 13 | ||||
-rw-r--r-- | libjava/Makefile.am | 3 | ||||
-rw-r--r-- | libjava/Makefile.in | 25 | ||||
-rw-r--r-- | libjava/javax/swing/JFormattedTextField.java | 230 | ||||
-rw-r--r-- | libjava/javax/swing/text/DocumentFilter.java | 43 | ||||
-rw-r--r-- | libjava/javax/swing/text/NavigationFilter.java | 43 |
6 files changed, 348 insertions, 9 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 3aadf49..0bec4ff 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,16 @@ +2003-03-17 Michael Koch + + * javax/print/attribute/Attribute.java, + javax/print/attribute/AttributeSet.java, + javax/print/attribute/PrintRequestAttributeSet.java: + New files. + * Makefile.am + (awt_java_source_files): Added new files: + javax/print/attribute/Attribute.java + javax/print/attribute/AttributeSet.java + javax/print/attribute/PrintRequestAttributeSet.java + * Makefile.in: Regenerated. + 2003-03-16 Tom Tromey <tromey@redhat.com> * resolve.cc (ncode): Use _Jv_platform_ffi_abi. diff --git a/libjava/Makefile.am b/libjava/Makefile.am index ccad1e7..b8c197d 100644 --- a/libjava/Makefile.am +++ b/libjava/Makefile.am @@ -1232,6 +1232,7 @@ javax/swing/JCheckBox.java \ javax/swing/JComponent.java \ javax/swing/JDialog.java \ javax/swing/JEditorPane.java \ +javax/swing/JFormattedTextField.java \ javax/swing/JFrame.java \ javax/swing/JLabel.java \ javax/swing/JLayeredPane.java \ @@ -1316,6 +1317,7 @@ javax/swing/text/ComponentView.java \ javax/swing/text/DefaultCaret.java \ javax/swing/text/DefaultEditorKit.java \ javax/swing/text/Document.java \ +javax/swing/text/DocumentFilter.java \ javax/swing/text/EditorKit.java \ javax/swing/text/Element.java \ javax/swing/text/GapContent.java \ @@ -1329,6 +1331,7 @@ javax/swing/text/Style.java \ javax/swing/text/View.java \ javax/swing/text/ViewFactory.java \ javax/swing/text/MutableAttributeSet.java \ +javax/swing/text/NavigationFilter.java \ javax/swing/text/StyledDocument.java \ javax/swing/text/StyledEditorKit.java \ javax/swing/text/TextAction.java \ diff --git a/libjava/Makefile.in b/libjava/Makefile.in index 00dc507..183c0d2 100644 --- a/libjava/Makefile.in +++ b/libjava/Makefile.in @@ -1001,6 +1001,7 @@ javax/swing/JCheckBox.java \ javax/swing/JComponent.java \ javax/swing/JDialog.java \ javax/swing/JEditorPane.java \ +javax/swing/JFormattedTextField.java \ javax/swing/JFrame.java \ javax/swing/JLabel.java \ javax/swing/JLayeredPane.java \ @@ -1085,6 +1086,7 @@ javax/swing/text/ComponentView.java \ javax/swing/text/DefaultCaret.java \ javax/swing/text/DefaultEditorKit.java \ javax/swing/text/Document.java \ +javax/swing/text/DocumentFilter.java \ javax/swing/text/EditorKit.java \ javax/swing/text/Element.java \ javax/swing/text/GapContent.java \ @@ -1098,6 +1100,7 @@ javax/swing/text/Style.java \ javax/swing/text/View.java \ javax/swing/text/ViewFactory.java \ javax/swing/text/MutableAttributeSet.java \ +javax/swing/text/NavigationFilter.java \ javax/swing/text/StyledDocument.java \ javax/swing/text/StyledEditorKit.java \ javax/swing/text/TextAction.java \ @@ -3853,13 +3856,14 @@ DEP_FILES = .deps/$(srcdir)/$(CONVERT_DIR)/gen-from-JIS.P \ .deps/javax/swing/JComboBox.P .deps/javax/swing/JComponent.P \ .deps/javax/swing/JDesktopPane.P .deps/javax/swing/JDialog.P \ .deps/javax/swing/JEditorPane.P .deps/javax/swing/JFileChooser.P \ -.deps/javax/swing/JFrame.P .deps/javax/swing/JInternalFrame.P \ -.deps/javax/swing/JLabel.P .deps/javax/swing/JLayeredPane.P \ -.deps/javax/swing/JList.P .deps/javax/swing/JMenu.P \ -.deps/javax/swing/JMenuBar.P .deps/javax/swing/JMenuItem.P \ -.deps/javax/swing/JOptionPane.P .deps/javax/swing/JPanel.P \ -.deps/javax/swing/JPasswordField.P .deps/javax/swing/JPopupMenu.P \ -.deps/javax/swing/JProgressBar.P .deps/javax/swing/JRadioButton.P \ +.deps/javax/swing/JFormattedTextField.P .deps/javax/swing/JFrame.P \ +.deps/javax/swing/JInternalFrame.P .deps/javax/swing/JLabel.P \ +.deps/javax/swing/JLayeredPane.P .deps/javax/swing/JList.P \ +.deps/javax/swing/JMenu.P .deps/javax/swing/JMenuBar.P \ +.deps/javax/swing/JMenuItem.P .deps/javax/swing/JOptionPane.P \ +.deps/javax/swing/JPanel.P .deps/javax/swing/JPasswordField.P \ +.deps/javax/swing/JPopupMenu.P .deps/javax/swing/JProgressBar.P \ +.deps/javax/swing/JRadioButton.P \ .deps/javax/swing/JRadioButtonMenuItem.P .deps/javax/swing/JRootPane.P \ .deps/javax/swing/JScrollBar.P .deps/javax/swing/JScrollPane.P \ .deps/javax/swing/JSeparator.P .deps/javax/swing/JSlider.P \ @@ -4015,10 +4019,13 @@ DEP_FILES = .deps/$(srcdir)/$(CONVERT_DIR)/gen-from-JIS.P \ .deps/javax/swing/text/ComponentView.P \ .deps/javax/swing/text/DefaultCaret.P \ .deps/javax/swing/text/DefaultEditorKit.P \ -.deps/javax/swing/text/Document.P .deps/javax/swing/text/EditorKit.P \ -.deps/javax/swing/text/Element.P .deps/javax/swing/text/GapContent.P \ +.deps/javax/swing/text/Document.P \ +.deps/javax/swing/text/DocumentFilter.P \ +.deps/javax/swing/text/EditorKit.P .deps/javax/swing/text/Element.P \ +.deps/javax/swing/text/GapContent.P \ .deps/javax/swing/text/JTextComponent.P .deps/javax/swing/text/Keymap.P \ .deps/javax/swing/text/MutableAttributeSet.P \ +.deps/javax/swing/text/NavigationFilter.P \ .deps/javax/swing/text/PlainDocument.P \ .deps/javax/swing/text/PlainEditorKit.P \ .deps/javax/swing/text/Position.P .deps/javax/swing/text/Segment.P \ diff --git a/libjava/javax/swing/JFormattedTextField.java b/libjava/javax/swing/JFormattedTextField.java new file mode 100644 index 0000000..c7838e8 --- /dev/null +++ b/libjava/javax/swing/JFormattedTextField.java @@ -0,0 +1,230 @@ +/* JFormattedTextField.java -- + Copyright (C) 2003 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + + +package javax.swing; + +import java.awt.event.FocusEvent; +import java.io.Serializable; +import java.text.Format; +import javax.swing.text.Document; +import javax.swing.text.DocumentFilter; +import javax.swing.text.NavigationFilter; + +/** + * @author Michael Koch + * @since 1.4 + */ +public class JFormattedTextField extends JTextField +{ + public abstract static class AbstractFormatter implements Serializable + { + public AbstractFormatter () + { + //Do nothing here. + } + + protected Object clone () + { + throw new InternalError ("not implemented"); + } + + protected Action[] getActions () + { + throw new InternalError ("not implemented"); + } + + protected DocumentFilter getDocumentFilter () + { + throw new InternalError ("not implemented"); + } + + protected JFormattedTextField getFormattedTextField () + { + throw new InternalError ("not implemented"); + } + + protected NavigationFilter getNavigationFilter () + { + throw new InternalError ("not implemented"); + } + + public void install (JFormattedTextField ftf) + { + throw new InternalError ("not implemented"); + } + + public void uninstall () + { + throw new InternalError ("not implemented"); + } + + protected void invalidEdit () + { + throw new InternalError ("not implemented"); + } + + protected void setEditValid () + { + throw new InternalError ("not implemented"); + } + + public abstract Object stringToValue (String text); + + public abstract String valueToString (Object value); + } + + public abstract static class AbstractFormatterFactory + { + public AbstractFormatterFactory () + { + // Do nothing here. + } + + public abstract AbstractFormatter getFormatter (JFormattedTextField tf); + } + + public static final int COMMIT = 0; + public static final int COMMIT_OR_REVERT = 1; + public static final int REVERT = 2; + public static final int PERSIST = 3; + + public JFormattedTextField () + { + throw new InternalError ("not implemented"); + } + + public JFormattedTextField (Format format) + { + throw new InternalError ("not implemented"); + } + + public JFormattedTextField (AbstractFormatter formatter) + { + throw new InternalError ("not implemented"); + } + + public JFormattedTextField (AbstractFormatterFactory factory) + { + throw new InternalError ("not implemented"); + } + + public JFormattedTextField (AbstractFormatterFactory factory, Object value) + { + throw new InternalError ("not implemented"); + } + + public JFormattedTextField (Object value) + { + throw new InternalError ("not implemented"); + } + + public void commitEdit () + { + throw new InternalError ("not implemented"); + } + + public Action[] getActions () + { + throw new InternalError ("not implemented"); + } + + public int getFocusLostBehaviour () + { + throw new InternalError ("not implemented"); + } + + public AbstractFormatter getFormatter () + { + throw new InternalError ("not implemented"); + } + + public AbstractFormatterFactory getFormatterFactory () + { + throw new InternalError ("not implemented"); + } + + public String getUIClassID () + { + throw new InternalError ("not implemented"); + } + + public Object getValue () + { + throw new InternalError ("not implemented"); + } + + protected void invalidEdit () + { + throw new InternalError ("not implemented"); + } + + public boolean isEditValid () + { + throw new InternalError ("not implemented"); + } + + protected void processFocusEvent (FocusEvent evt) + { + throw new InternalError ("not implemented"); + } + + public void setDocument (Document document) + { + throw new InternalError ("not implemented"); + } + + public void setLostFocusBehavior (int behavior) + { + throw new InternalError ("not implemented"); + } + + protected void setFormatter (AbstractFormatter formatter) + { + throw new InternalError ("not implemented"); + } + + public void setFormatterFactory (AbstractFormatterFactory factory) + { + throw new InternalError ("not implemented"); + } + + public void setValue (Object value) + { + throw new InternalError ("not implemented"); + } +} diff --git a/libjava/javax/swing/text/DocumentFilter.java b/libjava/javax/swing/text/DocumentFilter.java new file mode 100644 index 0000000..7a8e95d --- /dev/null +++ b/libjava/javax/swing/text/DocumentFilter.java @@ -0,0 +1,43 @@ +/* DocumentFilter.java -- + Copyright (C) 2003 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + + +package javax.swing.text; + +public class DocumentFilter +{ +} diff --git a/libjava/javax/swing/text/NavigationFilter.java b/libjava/javax/swing/text/NavigationFilter.java new file mode 100644 index 0000000..37d1c38 --- /dev/null +++ b/libjava/javax/swing/text/NavigationFilter.java @@ -0,0 +1,43 @@ +/* NavigationFilter.java -- + Copyright (C) 2003 Free Software Foundation, Inc. + +This file is part of GNU Classpath. + +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. + +Linking this library statically or dynamically with other modules is +making a combined work based on this library. Thus, the terms and +conditions of the GNU General Public License cover the whole +combination. + +As a special exception, the copyright holders of this library give you +permission to link this library with independent modules to produce an +executable, regardless of the license terms of these independent +modules, and to copy and distribute the resulting executable under +terms of your choice, provided that you also meet, for each linked +independent module, the terms and conditions of the license of that +module. An independent module is a module which is not derived from +or based on this library. If you modify this library, you may extend +this exception to your version of the library, but you are not +obligated to do so. If you do not wish to do so, delete this +exception statement from your version. */ + + +package javax.swing.text; + +public class NavigationFilter +{ +} |