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

org.nasdanika.html.knockout.KnockoutBindingsSource Maven / Gradle / Ivy

package org.nasdanika.html.knockout;

import java.util.Collection;

public interface KnockoutBindingsSource {
	
	/**
	 * Binding interface for generation of observables.
	 * @author Pavel Vlasov
	 *
	 */
	interface Binding {
		
		String getName();
		
		Object getInitialValue();
		
		boolean isArray();
		
	}
	
	/**
	 * @return Returns all bindings in this element and sub-elements.
	 */
	Collection getAllBindings();
	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy