blob: b6f7ccc60db294977b02e113e18c8fa6c42346b7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.weex.ui.component;
/**
* basic Component types
*/
public class WXBasicComponentType {
public static final String TEXT = "text";
public static final String IMAGE = "image";
public static final String IMG = "img";
public static final String CONTAINER = "container";
public static final String DIV = "div";
public static final String SCROLLER = "scroller";
public static final String SLIDER = "slider";
public static final String SLIDER_NEIGHBOR = "slider-neighbor";
public static final String LIST = "list";
public static final String RECYCLER = "recycler";
public static final String WATERFALL = "waterfall";
public static final String VLIST = "vlist";
public static final String HLIST = "hlist";
public static final String CELL = "cell";
public static final String HEADER = "header";
public static final String FOOTER = "footer";
public static final String INDICATOR = "indicator";
public static final String VIDEO = "video";
public static final String INPUT = "input";
public static final String TEXTAREA = "textarea";
public static final String SWITCH = "switch";
public static final String A = "a";
public static final String EMBED = "embed";
public static final String WEB = "web";
public static final String REFRESH = "refresh";
public static final String LOADING = "loading";
public static final String LOADING_INDICATOR = "loading-indicator";
public static final String CYCLE_SLIDER = "cycleslider";
public static final String RICHTEXT = "richtext";
public static final String RECYCLE_LIST = "recycle-list";
public static final String CELL_SLOT = "cell-slot";
}