1 /*
2  * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3  */
4 /*
5  * Licensed to the Apache Software Foundation (ASF) under one or more
6  * contributor license agreements.  See the NOTICE file distributed with
7  * this work for additional information regarding copyright ownership.
8  * The ASF licenses this file to You under the Apache License, Version 2.0
9  * (the "License"); you may not use this file except in compliance with
10  * the License.  You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 /*
21  * $Id: Utils.java,v 1.1.4.1 2005/09/08 11:03:21 suresh_emailid Exp $
22  */
23 package com.sun.org.apache.xml.internal.serializer.utils;
24 
25 /**
26  * This class contains utilities used by the serializer.
27  *
28  * This class is not a public API, it is only public because it is
29  * used by com.sun.org.apache.xml.internal.serializer.
30  *
31  * @xsl.usage internal
32  */
33 public final class Utils
34 {
35     /**
36      * A singleton Messages object is used to load the
37      * given resource bundle just once, it is
38      * used by multiple transformations as long as the JVM stays up.
39      */
40     public static final com.sun.org.apache.xml.internal.serializer.utils.Messages messages=
41         new com.sun.org.apache.xml.internal.serializer.utils.Messages(
42             "com.sun.org.apache.xml.internal.serializer.utils.SerializerMessages");
43 }
44