jdk/make/src/classes/build/tools/cldrconverter/AbstractLDMLHandler.java
changeset 31263 a81a0af34ca0
parent 21805 c7d7946239de
--- a/jdk/make/src/classes/build/tools/cldrconverter/AbstractLDMLHandler.java	Wed Jun 24 16:08:58 2015 -0700
+++ b/jdk/make/src/classes/build/tools/cldrconverter/AbstractLDMLHandler.java	Wed Jun 24 16:42:11 2015 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -122,6 +122,15 @@
     }
 
     /**
+     * start an element that defines an alias entry, with the value provided by the element's alias.
+     */
+    void pushAliasEntry(String qName, Attributes attributes, String key) {
+        if (!pushIfIgnored(qName, attributes)) {
+            currentContainer = new AliasEntry(qName, currentContainer, key);
+        }
+    }
+
+    /**
      * start an element that defines a string entry, with the value provided by an attribute value.
      */
     void pushStringEntry(String qName, Attributes attributes, String key, String value) {