~ubuntu-branches/ubuntu/precise/classpath/precise

« back to all changes in this revision

Viewing changes to java/awt/font/LineBreakMeasurer.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2006-05-27 16:11:15 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060527161115-h6e39eposdt5snb6
Tags: 2:0.91-3
* Install header files to /usr/include/classpath.
* debian/control: classpath: Conflict with jamvm < 1.4.3 and
  cacao < 0.96 (Closes: #368172).

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
package java.awt.font;
40
40
 
 
41
import gnu.classpath.NotImplementedException;
 
42
 
41
43
import java.text.AttributedCharacterIterator;
42
44
import java.text.BreakIterator;
43
45
 
69
71
 
70
72
  public void deleteChar (AttributedCharacterIterator newParagraph,
71
73
                          int deletePos)
 
74
    throws NotImplementedException
72
75
  {
73
76
    throw new Error ("not implemented");
74
77
  }
80
83
 
81
84
  public void insertChar (AttributedCharacterIterator newParagraph,
82
85
                          int insertPos)
 
86
    throws NotImplementedException
83
87
  {
84
88
    throw new Error ("not implemented");
85
89
  }
86
90
 
87
91
  public TextLayout nextLayout (float wrappingWidth)
 
92
    throws NotImplementedException
88
93
  {
89
94
    throw new Error ("not implemented");
90
95
  }
91
96
 
92
97
  public TextLayout nextLayout (float wrappingWidth, int offsetLimit,
93
98
                                boolean requireNextWord)
 
99
    throws NotImplementedException
94
100
  {
95
101
    throw new Error ("not implemented");
96
102
  }
97
103
 
98
104
  public int nextOffset (float wrappingWidth)
 
105
    throws NotImplementedException
99
106
  {
100
107
    throw new Error ("not implemented");
101
108
  }
102
109
 
103
110
  public int nextOffset (float wrappingWidth, int offsetLimit,
104
111
                         boolean requireNextWord)
 
112
    throws NotImplementedException
105
113
  {
106
114
    throw new Error ("not implemented");
107
115
  }