1 /*
2 * Copyright 2007 - 2007 JEuclid, http://jeuclid.sf.net
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.w3c.dom.mathml;
17
18
19 /*
20 * Please note: This file was automatically generated from the source of the
21 * MathML specification. Do not edit it. If there are errors or missing
22 * elements, please correct the stylesheet instead.
23 */
24
25 /**
26 * This interface extends the MathMLPresentationToken interface for the MathML
27 * string literal element ms.
28 *
29 *
30 */
31 public interface MathMLStringLitElement extends MathMLPresentationToken {
32 /**
33 * A string giving the opening delimiter for the string literal;
34 * represents the lquote attribute for the ms element, if specified.
35 *
36 * @return value of the lquote attribute.
37 */
38 String getLquote();
39
40 /**
41 * setter for the lquote attribute.
42 *
43 * @param lquote
44 * new value for lquote.
45 * @see #getLquote()
46 */
47 void setLquote(String lquote);
48
49 /**
50 * A string giving the closing delimiter for the string literal;
51 * represents the rquote attribute for the ms element, if specified.
52 *
53 * @return value of the rquote attribute.
54 */
55 String getRquote();
56
57 /**
58 * setter for the rquote attribute.
59 *
60 * @param rquote
61 * new value for rquote.
62 * @see #getRquote()
63 */
64 void setRquote(String rquote);
65 };