JRadioButtonMenuItem.java, [...]: Fixed import statements.
2004-01-10 Michael Koch <konqueror@gmx.de> * javax/swing/JRadioButtonMenuItem.java, javax/swing/JSeparator.java, javax/swing/JSplitPane.java, javax/swing/JTextPane.java, javax/swing/JToolBar.java, javax/swing/ListCellRenderer.java, javax/swing/ListModel.java, javax/swing/MenuElement.java, javax/swing/OverlayLayout.java, javax/swing/ProgressMonitor.java, javax/swing/ProgressMonitorInputStream.java, javax/swing/Renderer.java, javax/swing/RootPaneContainer.java, javax/swing/Scrollable.java, javax/swing/SingleSelectionModel.java, javax/swing/ToolTipManager.java, javax/swing/ViewportLayout.java, javax/swing/event/DocumentEvent.java, javax/swing/event/SwingPropertyChangeSupport.java, javax/swing/event/TreeSelectionEvent.java, javax/swing/event/UndoableEditEvent.java, javax/swing/text/AbstractDocument.java, javax/swing/text/AttributeSet.java, javax/swing/text/Caret.java, javax/swing/text/ComponentView.java, javax/swing/text/DefaultCaret.java, javax/swing/text/DefaultEditorKit.java, javax/swing/text/Document.java, javax/swing/text/EditorKit.java, javax/swing/text/GapContent.java, javax/swing/text/Keymap.java, javax/swing/text/MutableAttributeSet.java, javax/swing/text/PlainEditorKit.java, javax/swing/text/Segment.java, javax/swing/text/Style.java, javax/swing/text/StyledDocument.java, javax/swing/text/StyledEditorKit.java, javax/swing/text/TextAction.java, javax/swing/text/View.java: Fixed import statements. From-SVN: r75651
This commit is contained in:
parent
c8fdcfae25
commit
5c9092a788
@ -1,3 +1,45 @@
|
||||
2004-01-10 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* javax/swing/JRadioButtonMenuItem.java,
|
||||
javax/swing/JSeparator.java,
|
||||
javax/swing/JSplitPane.java,
|
||||
javax/swing/JTextPane.java,
|
||||
javax/swing/JToolBar.java,
|
||||
javax/swing/ListCellRenderer.java,
|
||||
javax/swing/ListModel.java,
|
||||
javax/swing/MenuElement.java,
|
||||
javax/swing/OverlayLayout.java,
|
||||
javax/swing/ProgressMonitor.java,
|
||||
javax/swing/ProgressMonitorInputStream.java,
|
||||
javax/swing/Renderer.java,
|
||||
javax/swing/RootPaneContainer.java,
|
||||
javax/swing/Scrollable.java,
|
||||
javax/swing/SingleSelectionModel.java,
|
||||
javax/swing/ToolTipManager.java,
|
||||
javax/swing/ViewportLayout.java,
|
||||
javax/swing/event/DocumentEvent.java,
|
||||
javax/swing/event/SwingPropertyChangeSupport.java,
|
||||
javax/swing/event/TreeSelectionEvent.java,
|
||||
javax/swing/event/UndoableEditEvent.java,
|
||||
javax/swing/text/AbstractDocument.java,
|
||||
javax/swing/text/AttributeSet.java,
|
||||
javax/swing/text/Caret.java,
|
||||
javax/swing/text/ComponentView.java,
|
||||
javax/swing/text/DefaultCaret.java,
|
||||
javax/swing/text/DefaultEditorKit.java,
|
||||
javax/swing/text/Document.java,
|
||||
javax/swing/text/EditorKit.java,
|
||||
javax/swing/text/GapContent.java,
|
||||
javax/swing/text/Keymap.java,
|
||||
javax/swing/text/MutableAttributeSet.java,
|
||||
javax/swing/text/PlainEditorKit.java,
|
||||
javax/swing/text/Segment.java,
|
||||
javax/swing/text/Style.java,
|
||||
javax/swing/text/StyledDocument.java,
|
||||
javax/swing/text/StyledEditorKit.java,
|
||||
javax/swing/text/TextAction.java,
|
||||
javax/swing/text/View.java: Fixed import statements.
|
||||
|
||||
2004-01-08 Graydon Hoare <graydon@redhat.com>
|
||||
|
||||
* javax/swing/JLayeredPane.java: Rewrite to accomodate
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* JRadioButtonMenuItem.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,11 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.io.*;
|
||||
import javax.accessibility.*;
|
||||
import java.io.IOException;
|
||||
import java.io.ObjectOutputStream;
|
||||
import javax.accessibility.Accessible;
|
||||
import javax.accessibility.AccessibleContext;
|
||||
import javax.accessibility.AccessibleRole;
|
||||
|
||||
/**
|
||||
* JRadioButtonMenuItem
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* JSeparator.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,10 +37,12 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.io.*;
|
||||
import javax.accessibility.*;
|
||||
import javax.swing.plaf.*;
|
||||
import java.io.IOException;
|
||||
import java.io.ObjectOutputStream;
|
||||
import javax.accessibility.Accessible;
|
||||
import javax.accessibility.AccessibleContext;
|
||||
import javax.accessibility.AccessibleRole;
|
||||
import javax.swing.plaf.SeparatorUI;
|
||||
|
||||
/**
|
||||
* JSeparator
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* JSplitPane.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,11 +37,16 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.io.*;
|
||||
import javax.accessibility.*;
|
||||
import javax.swing.plaf.*;
|
||||
import java.awt.Component;
|
||||
import java.awt.Graphics;
|
||||
import java.io.IOException;
|
||||
import java.io.ObjectOutputStream;
|
||||
import javax.accessibility.Accessible;
|
||||
import javax.accessibility.AccessibleContext;
|
||||
import javax.accessibility.AccessibleRole;
|
||||
import javax.accessibility.AccessibleStateSet;
|
||||
import javax.accessibility.AccessibleValue;
|
||||
import javax.swing.plaf.SplitPaneUI;
|
||||
|
||||
/**
|
||||
* JSplitPane
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* JTextPane.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,10 +37,16 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.io.*;
|
||||
import javax.swing.text.*;
|
||||
import java.awt.Component;
|
||||
import java.io.IOException;
|
||||
import java.io.ObjectOutputStream;
|
||||
import javax.swing.text.AttributeSet;
|
||||
import javax.swing.text.Document;
|
||||
import javax.swing.text.EditorKit;
|
||||
import javax.swing.text.MutableAttributeSet;
|
||||
import javax.swing.text.Style;
|
||||
import javax.swing.text.StyledDocument;
|
||||
import javax.swing.text.StyledEditorKit;
|
||||
|
||||
/**
|
||||
* JTextPane
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* JToolBar.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,12 +37,19 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.beans.*;
|
||||
import java.io.*;
|
||||
import javax.accessibility.*;
|
||||
import javax.swing.plaf.*;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Component;
|
||||
import java.awt.Container;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Insets;
|
||||
import java.beans.PropertyChangeListener;
|
||||
import java.io.IOException;
|
||||
import java.io.ObjectOutputStream;
|
||||
import javax.accessibility.Accessible;
|
||||
import javax.accessibility.AccessibleContext;
|
||||
import javax.accessibility.AccessibleRole;
|
||||
import javax.accessibility.AccessibleStateSet;
|
||||
import javax.swing.plaf.ToolBarUI;
|
||||
|
||||
/**
|
||||
* JToolBar
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* ListCellRenderer.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,7 +37,7 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.Component;
|
||||
|
||||
public interface ListCellRenderer
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* ListModel.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,7 +37,7 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
import javax.swing.event.*;
|
||||
import javax.swing.event.ListDataListener;
|
||||
|
||||
public interface ListModel
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* MenuElement.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,9 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.awt.event.*;
|
||||
import java.awt.Component;
|
||||
import java.awt.event.KeyEvent;
|
||||
import java.awt.event.MouseEvent;
|
||||
|
||||
/**
|
||||
* MenuElement
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* OverlayLayout.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,11 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.io.*;
|
||||
import java.awt.Component;
|
||||
import java.awt.Container;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.LayoutManager2;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* OverlayLayout
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* ProgressMonitor.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,7 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.awt.Component;
|
||||
|
||||
/**
|
||||
* ProgressMonitor
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* ProgressMonitorInputStream.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,10 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.io.*;
|
||||
import java.awt.Component;
|
||||
import java.io.FilterInputStream;
|
||||
import java.io.InputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* ProgressMonitorInputStream
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Renderer.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,7 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.awt.Component;
|
||||
|
||||
/**
|
||||
* Renderer
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* RootPaneContainer.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,8 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.awt.Container;
|
||||
import java.awt.Component;
|
||||
|
||||
/**
|
||||
* RootPaneContainer
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Scrollable.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,7 +37,8 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Rectangle;
|
||||
|
||||
public interface Scrollable
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* SingleSelectionModel.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,7 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import javax.swing.event.*;
|
||||
import javax.swing.event.ChangeListener;
|
||||
|
||||
/**
|
||||
* SingleSelectionModel
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* ToolTipManager.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,12 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.awt.event.*;
|
||||
import java.awt.Rectangle;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.awt.event.ActionListener;
|
||||
import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.awt.event.MouseMotionListener;
|
||||
|
||||
/**
|
||||
* ToolTipManager
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* ViewportLayout.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,11 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.io.*;
|
||||
import java.awt.Component;
|
||||
import java.awt.Container;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.LayoutManager;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* ViewportLayout
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* DocumentEvent.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,8 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.event;
|
||||
|
||||
// Imports
|
||||
import javax.swing.text.*;
|
||||
import javax.swing.text.Document;
|
||||
import javax.swing.text.Element;
|
||||
|
||||
/**
|
||||
* DocumentEvent public interface
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* SwingPropertyChangeSupport.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,10 +37,14 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.event;
|
||||
|
||||
// Imports
|
||||
import java.beans.*;
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
import java.beans.PropertyChangeEvent;
|
||||
import java.beans.PropertyChangeListener;
|
||||
import java.beans.PropertyChangeSupport;
|
||||
import java.io.IOException;
|
||||
import java.io.ObjectInputStream;
|
||||
import java.io.ObjectOutputStream;
|
||||
import java.util.EventListener;
|
||||
import java.util.Hashtable;
|
||||
|
||||
/**
|
||||
* SwingPropertyChangeSupport
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* TreeSelectionEvent.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,8 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.event;
|
||||
|
||||
// Imports
|
||||
import java.util.*;
|
||||
import javax.swing.tree.*;
|
||||
import java.util.EventObject;
|
||||
import javax.swing.tree.TreePath;
|
||||
|
||||
/**
|
||||
* TreeSelectionEvent
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* UndoableEditEvent.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,8 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.event;
|
||||
|
||||
// Imports
|
||||
import java.util.*;
|
||||
import javax.swing.undo.*;
|
||||
import java.util.EventObject;
|
||||
import javax.swing.undo.UndoableEdit;
|
||||
|
||||
/**
|
||||
* UndoableEditEvent
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* AbstractDocument.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,10 +37,17 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import javax.swing.event.*;
|
||||
import javax.swing.undo.*;
|
||||
import java.util.*;
|
||||
import javax.swing.tree.*;
|
||||
import java.util.Dictionary;
|
||||
import java.util.Enumeration;
|
||||
import java.util.EventListener;
|
||||
import java.util.Vector;
|
||||
import javax.swing.event.DocumentEvent;
|
||||
import javax.swing.event.DocumentListener;
|
||||
import javax.swing.event.EventListenerList;
|
||||
import javax.swing.event.UndoableEditEvent;
|
||||
import javax.swing.event.UndoableEditListener;
|
||||
import javax.swing.tree.TreeNode;
|
||||
import javax.swing.undo.UndoableEdit;
|
||||
|
||||
public abstract class AbstractDocument implements Document
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* AttributeSet.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,7 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import java.util.Enumeration;
|
||||
|
||||
public interface AttributeSet
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Caret.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,9 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import java.awt.*;
|
||||
import javax.swing.event.*;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Point;
|
||||
import javax.swing.event.ChangeListener;
|
||||
|
||||
public interface Caret
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* ComponentView.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,7 +37,9 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.Component;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Shape;
|
||||
|
||||
public class ComponentView extends View
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* DefaultCaret.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,10 +37,20 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import java.awt.*;
|
||||
import java.util.*;
|
||||
import java.awt.event.*;
|
||||
import javax.swing.event.*;
|
||||
import java.awt.Color;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Point;
|
||||
import java.awt.Rectangle;
|
||||
import java.awt.Shape;
|
||||
import java.awt.event.FocusEvent;
|
||||
import java.awt.event.FocusListener;
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.awt.event.MouseListener;
|
||||
import java.awt.event.MouseMotionListener;
|
||||
import java.util.EventListener;
|
||||
import java.util.Vector;
|
||||
import javax.swing.event.ChangeListener;
|
||||
import javax.swing.event.EventListenerList;
|
||||
|
||||
|
||||
public class DefaultCaret extends Rectangle implements Caret, FocusListener, MouseListener, MouseMotionListener
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* DefaultEditorKit.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,12 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.io.*;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.io.Reader;
|
||||
import java.io.Writer;
|
||||
import javax.swing.Action;
|
||||
import javax.swing.JEditorPane;
|
||||
|
||||
public class DefaultEditorKit extends EditorKit
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Document.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,8 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
|
||||
import javax.swing.event.*;
|
||||
import javax.swing.event.DocumentListener;
|
||||
import javax.swing.event.UndoableEditListener;
|
||||
|
||||
public interface Document
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* EditorKit.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,12 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.io.*;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.io.Reader;
|
||||
import java.io.Writer;
|
||||
import javax.swing.Action;
|
||||
import javax.swing.JEditorPane;
|
||||
|
||||
public abstract class EditorKit implements Cloneable
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* GapContent.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -40,8 +40,7 @@ package javax.swing.text;
|
||||
// too lazy to make a real gapcontent.
|
||||
// lets just use a stringbuffer instead.
|
||||
|
||||
import javax.swing.undo.*;
|
||||
|
||||
import javax.swing.undo.UndoableEdit;
|
||||
|
||||
public class GapContent implements AbstractDocument.Content
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Keymap.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,7 +37,8 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import javax.swing.*;
|
||||
import javax.swing.Action;
|
||||
import javax.swing.KeyStroke;
|
||||
|
||||
public interface Keymap
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* MutableAttributeSet.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,7 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
// Imports
|
||||
import java.util.*;
|
||||
import java.util.Enumeration;
|
||||
|
||||
/**
|
||||
* MutableAttributeSet
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* PlainEditorKit.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,12 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.io.*;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.io.Reader;
|
||||
import java.io.Writer;
|
||||
import javax.swing.Action;
|
||||
import javax.swing.JEditorPane;
|
||||
|
||||
public class PlainEditorKit extends EditorKit
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Segment.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,6 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
|
||||
public class Segment implements Cloneable, CharacterIterator
|
||||
{
|
||||
char[] array;
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Style.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,7 +37,7 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import javax.swing.event.*;
|
||||
import javax.swing.event.ChangeListener;
|
||||
|
||||
public interface Style
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* StyledDcoument.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,8 +37,8 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.awt.Color;
|
||||
import java.awt.Font;
|
||||
|
||||
/**
|
||||
* StyledDocument
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* StyledEditorKit.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,13 +37,19 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
// Imports
|
||||
import java.awt.*;
|
||||
import java.awt.event.*;
|
||||
import java.beans.*;
|
||||
import java.io.*;
|
||||
import javax.swing.*;
|
||||
import javax.swing.event.*;
|
||||
import java.awt.Color;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.beans.PropertyChangeEvent;
|
||||
import java.beans.PropertyChangeListener;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.io.Reader;
|
||||
import java.io.Serializable;
|
||||
import java.io.Writer;
|
||||
import javax.swing.Action;
|
||||
import javax.swing.JEditorPane;
|
||||
import javax.swing.event.CaretEvent;
|
||||
import javax.swing.event.CaretListener;
|
||||
|
||||
/**
|
||||
* StyledEditorKit
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* TextAction.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,9 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
// Imports
|
||||
import java.awt.event.*;
|
||||
import javax.swing.*;
|
||||
import java.awt.event.ActionEvent;
|
||||
import javax.swing.AbstractAction;
|
||||
import javax.swing.Action;
|
||||
|
||||
/**
|
||||
* TextAction
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* View.java --
|
||||
Copyright (C) 2002 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -37,9 +37,10 @@ exception statement from your version. */
|
||||
|
||||
package javax.swing.text;
|
||||
|
||||
import java.awt.*;
|
||||
import javax.swing.*;
|
||||
import java.util.*;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Shape;
|
||||
import java.util.Vector;
|
||||
import javax.swing.SwingConstants;
|
||||
|
||||
public abstract class View implements SwingConstants
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user