01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: /**
18: * @author Dmitry A. Durnev
19: * @version $Revision$
20: */package java.awt.im;
21:
22: public final class InputSubset extends Character.Subset {
23:
24: public static final InputSubset LATIN = new InputSubset("LATIN"); //$NON-NLS-1$
25:
26: public static final InputSubset LATIN_DIGITS = new InputSubset(
27: "LATIN_DIGITS"); //$NON-NLS-1$
28:
29: public static final InputSubset TRADITIONAL_HANZI = new InputSubset(
30: "TRADITIONAL_HANZI"); //$NON-NLS-1$
31:
32: public static final InputSubset SIMPLIFIED_HANZI = new InputSubset(
33: "SIMPLIFIED_HANZI"); //$NON-NLS-1$
34:
35: public static final InputSubset KANJI = new InputSubset("KANJI"); //$NON-NLS-1$
36:
37: public static final InputSubset HANJA = new InputSubset("HANJA"); //$NON-NLS-1$
38:
39: public static final InputSubset HALFWIDTH_KATAKANA = new InputSubset(
40: "HALFWIDTH_KATAKANA"); //$NON-NLS-1$
41:
42: public static final InputSubset FULLWIDTH_LATIN = new InputSubset(
43: "FULLWIDTH_LATIN"); //$NON-NLS-1$
44:
45: public static final InputSubset FULLWIDTH_DIGITS = new InputSubset(
46: "FULLWIDTH_DIGITS"); //$NON-NLS-1$
47:
48: private InputSubset(String name) {
49: super(name);
50: }
51: }
|