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

com.dragome.forms.bindings.client.command.SendToBuilder Maven / Gradle / Ivy

There is a newer version: 0.96-beta4
Show newest version
package com.dragome.forms.bindings.client.command;

import com.dragome.forms.bindings.client.binding.Disposable;
import com.dragome.forms.bindings.client.channel.Destination;
import com.dragome.forms.bindings.client.channel.Publisher;
import com.dragome.forms.bindings.client.value.ValueTarget;

/**
 * Created by IntelliJ IDEA.
 * User: andrew
 * Date: Mar 6, 2010
 * Time: 1:08:01 PM
 * To change this template use File | Settings | File Templates.
 */
public interface SendToBuilder
{
	Disposable to(Destination destination);

	Disposable to(Publisher destination);

	Disposable to(ValueTarget destination);

	Disposable to(ParameterisedCommand destination);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy