@@ -64,26 +64,6 @@ public interface CssParser {
64
64
public void parseURL (ApplContext ac , URL url , String title , String kind ,
65
65
String media , int origin );
66
66
67
- /**
68
- * Parse a STYLE element.
69
- * The real difference between this method and the precedent
70
- * is that this method can take a string. The URL is used
71
- * to resolve import statement and URL statement in the style
72
- * sheet.
73
- * <p/>
74
- * For a backward compatibility, <code>parseStyleElement</code> and
75
- * <code>parseStyleAttribute</code> use a string for the input.
76
- *
77
- * @param input the input string.
78
- * @param url the URL where the input stream comes from.
79
- * @param lineno The number line in the source document.
80
- * It is used for error message
81
- * @see #parseStyleElement(ApplContext, InputStream, String, String, URL, int)
82
- * @deprecated Replaced by parseStyleElement
83
- */
84
- public abstract void parseStyleElement (ApplContext ac , String input ,
85
- URL url , int lineno );
86
-
87
67
/**
88
68
* Parse a STYLE element.
89
69
* The real difference between this method and the precedent
@@ -118,27 +98,6 @@ public abstract void parseStyleElement(ApplContext ac, Reader reader,
118
98
String title , String media , URL url ,
119
99
int lineno );
120
100
121
-
122
- /**
123
- * Parser a STYLE attribute.
124
- * Here, you must generate your own uniq id for the context.
125
- * After, you can reference this style attribute by the id.
126
- * <p/>
127
- * <strong>Be careful, the id must be uniq !</strong>
128
- * <p/>
129
- * For a backward compatibility, <code>parseStyleElement</code> and
130
- * <code>parseStyleAttribute</code> use a string for the input.
131
- *
132
- * @param ac the validation context
133
- * @param input the input string.
134
- * @param id your uniq id to reference this style attribute.
135
- * @param url the URL where the input stream comes from.
136
- * @param lineno The number line in the source document. It is used for error message.
137
- * @see #parseStyleAttribute(ApplContext, InputStream, String, URL, int)
138
- * @deprecated Replaced by parseStyleAttribute
139
- */
140
- public abstract void parseStyleAttribute (ApplContext ac , String input , String id , URL url , int lineno );
141
-
142
101
/**
143
102
* Parser a STYLE attribute.
144
103
* Here, you must generate your own uniq id for the context.
0 commit comments