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

com.gwtplatform.mvp.rebind.PlaceTokenRegistryImpl.vm Maven / Gradle / Ivy

The newest version!
package ${packageName};

import java.util.Set;
import java.util.HashSet;
import com.gwtplatform.mvp.shared.proxy.PlaceTokenRegistry;

public class ${className} implements PlaceTokenRegistry {
    public Set getAllPlaceTokens() {
        Set placeTokens = new HashSet();

#foreach( $token in $placeTokens )
        placeTokens.add("$token");
#end

        return placeTokens;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy