All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.dev.util.xml.Messages Maven / Gradle / Ivy

Go to download

Vaadin is a web application framework for Rich Internet Applications (RIA). Vaadin enables easy development and maintenance of fast and secure rich web applications with a stunning look and feel and a wide browser support. It features a server-side architecture with the majority of the logic running on the server. Ajax technology is used at the browser-side to ensure a rich and interactive user experience.

There is a newer version: 8.25.2
Show newest version
/*
 * Copyright 2006 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.google.gwt.dev.util.xml;

import com.google.gwt.core.ext.TreeLogger;
import com.google.gwt.dev.util.msg.Message0;
import com.google.gwt.dev.util.msg.Message2IntString;
import com.google.gwt.dev.util.msg.Message2StringInt;
import com.google.gwt.dev.util.msg.Message3IntStringClass;
import com.google.gwt.dev.util.msg.Message3StringIntString;

/**
 * Static XML messages.
 */
class Messages {
  public static final Message3IntStringClass XML_ATTRIBUTE_CONVERSION_ERROR =
      new Message3IntStringClass(TreeLogger.ERROR,
      "Line $0: Unable to convert attribute '$1' to type '$2'");

  public static final Message3StringIntString XML_ATTRIBUTE_UNEXPECTED =
      new Message3StringIntString(TreeLogger.ERROR,
      "Line $1: Unexpected attribute '$2' in element '$0'");

  public static final Message2StringInt XML_CHILDREN_NOT_ALLOWED =
      new Message2StringInt(TreeLogger.ERROR, "Line $1: Child element '$0' is not allowed");

  public static final Message2IntString XML_ELEMENT_HANDLER_EXCEPTION = new Message2IntString(
      TreeLogger.ERROR,
      "Line $0: Unexpected exception while processing element '$1'");

  public static final Message2IntString XML_ELEMENT_UNEXPECTED = new Message2IntString(
      TreeLogger.ERROR, "Line $0: Unexpected element '$1'");

  public static final Message0 XML_PARSE_FAILED = new Message0(
      TreeLogger.ERROR, "Failure while parsing XML");

  public static final Message3StringIntString XML_REQUIRED_ATTRIBUTE_MISSING = new Message3StringIntString(
      TreeLogger.ERROR,
      "Line $1: Missing required attribute '$2' in element '$0'");

  private Messages() {
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy