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

com.kotcrab.vis.usl.lang.StyleBlock Maven / Gradle / Ivy

There is a newer version: 0.2.1
Show newest version
package com.kotcrab.vis.usl.lang;

import java.util.ArrayList;

/** Represents StyleBlock in USL file */
public class StyleBlock {
	public String fullName;
	public StyleBlock extendsStyle;
	public boolean extendsInheritOnlyDefinedStyles;
	public ArrayList styles = new ArrayList();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy