/[classpath]/classpath/javax/swing/text/ComponentView.java
ViewVC logotype

Diff of /classpath/javax/swing/text/ComponentView.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by rveldema, Mon Mar 11 15:48:06 2002 UTC revision 1.2 by rveldema, Tue Mar 12 11:36:23 2002 UTC
# Line 4  import java.awt.*; Line 4  import java.awt.*;
4    
5  public class ComponentView extends View  public class ComponentView extends View
6  {  {
7      ComponentView(Element elem)      public ComponentView(Element elem)
8      {      {
9          super(elem);          super(elem);
10      }      }
# Line 15  public class ComponentView extends View Line 15  public class ComponentView extends View
15          return null;          return null;
16      }      }
17            
18      float getAlignment(int axis)      public float getAlignment(int axis)
19      {      {
20          return 0;          return 0;
21      }      }
22    
23      Component getComponent()      public Component getComponent()
24      {      {
25          return null;          return null;
26      }      }
27        
28      float getMaximumSpan(int axis)      public float getMaximumSpan(int axis)
29      {      {
30          return 0;          return 0;
31      }      }
32    
33      float getMinimumSpan(int axis)      public float getMinimumSpan(int axis)
34      {      {
35          return 0;          return 0;
36      }      }
37    
38      float getPreferredSpan(int axis)      public float getPreferredSpan(int axis)
39      {      {
40          return 0;          return 0;
41      }      }
42    
43      Shape modelToView(int pos, Shape a, Position.Bias b)      public Shape modelToView(int pos, Shape a, Position.Bias b)
44      {      {
45          return null;          return null;
46      }      }
47            
48      void paint(Graphics g, Shape a)      public void paint(Graphics g, Shape a)
49      {      {
50      }      }
51            
52      void setParent(View p)      public void setParent(View p)
53      {      {
54      }      }
55            
56      void setSize(float width, float height)      public void setSize(float width, float height)
57      {      {
58      }      }
59            
60      int viewToModel(float x, float y, Shape a, Position.Bias[] bias)      public int viewToModel(float x, float y, Shape a, Position.Bias[] bias)
61      {      {
62          return 0;          return 0;
63      }      }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26