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

br.com.objectos.ui.html.HtmlSpec Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2015 Objectos, Fábrica de Software LTDA.
 *
 * 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 br.com.objectos.ui.html;

import br.com.objectos.ui.html.annotation.Elements;
import br.com.objectos.ui.html.annotation.Spec;

/**
 * @author [email protected] (Marcio Endo)
 */
@Spec(className = "Html")
abstract class HtmlSpec
    implements
    Item4_01__Root_element,
    Item4_02__Document_metadata,
    Item4_03__Sections,
    Item4_04__Grouping_content,
    Item4_05__Text_level_semantics,
    Item4_06__Edits,
    Item4_07__Embedded_content,
    Item4_08__Links,
    Item4_09__Tabular_data,
    Item4_10__Forms,
    Item4_11__Scripting {

  @Override
  @Elements({ HeadProto.class, BodyProto.class })
  public abstract Element html();

  @Override
  @Elements({ DivProto.class, ImgProto.class })
  public abstract Element div();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy