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

com.jsftoolkit.gen.info.DecodeInfo Maven / Gradle / Ivy

Go to download

The core classes for the JSF Toolkit Component Framework. Includes all framework base and utility classes as well as component kick-start/code-generation and registration tools. Also includes some classes for testing that are reused in other projects. They cannot be factored out into a separate project because they are referenced by the tests and they reference this code (circular dependence).

The newest version!
package com.jsftoolkit.gen.info;

import com.jsftoolkit.utils.Utils;

public class DecodeInfo {
	private String[] props;

	private String[] defaults;

	private String format;

	public DecodeInfo(String[] props, String[] defaults, String format) {
		super();
		Utils.notNull(props, "props");
		Utils.notNull(defaults, "defaults");
		Utils.notNull(format, "format");
		this.props = props;
		this.defaults = defaults;
		this.format = format;
	}

	public String[] getDefaults() {
		return defaults;
	}

	public String getFormat() {
		return format;
	}

	public String[] getProps() {
		return props;
	}

	@Override
	public String toString() {
		return super.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy