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

de.jwic.controls.mobile.MFieldSetLayout Maven / Gradle / Ivy

There is a newer version: 5.3.43
Show newest version
package de.jwic.controls.mobile;

import de.jwic.base.ControlContainer;
import de.jwic.base.IControlContainer;

/**
 * Created by boogie on 10/30/14.
 */
public final class MFieldSetLayout extends ControlContainer {

	public static enum Type{
		Horizontal("horizontal"),
		Vertical("vertical");

		private final String name;
		Type(String type) {
			this.name= type;
		}

		public String getName() {
			return name;
		}
	}
	
	private Type type = Type.Vertical;

	public MFieldSetLayout(IControlContainer container) {
		this(container, null);
	}

	public MFieldSetLayout(IControlContainer container, String name) {
		super(container, name);
	}

	public void setType(Type type) {
		this.type = type;
	}

	public Type getType() {
		return type;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy