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

org.structr.rest.serialization.html.attr.If Maven / Gradle / Ivy

Go to download

Structr is an open source framework based on the popular Neo4j graph database.

There is a newer version: 2.0.1
Show newest version
package org.structr.rest.serialization.html.attr;

import org.neo4j.helpers.Predicate;
import org.structr.rest.serialization.html.Attr;

/**
 *
 * @author Christian Morgner
 */
public class If extends Conditional {

	public If(final boolean condition, final Attr attr) {
		
		super(new Predicate() {

			@Override
			public boolean accept(Context item) {
				return condition;
			}
			
		}, attr);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy