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

com.asayama.gwt.angular.site.examples.client.PrettifyExampleController Maven / Gradle / Ivy

package com.asayama.gwt.angular.site.examples.client;

import com.asayama.gwt.angular.client.Controller;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.TextResource;


public class PrettifyExampleController implements Controller {

    public static final TextResource VIEW_CODE = MyResources.INSTANCE.view();

    @Override
    public void onControllerLoad() {
        //noop
    }
}

interface MyResources extends ClientBundle {

    static final MyResources INSTANCE = GWT.create(MyResources.class);
    
    @Source("view/PrettifyExample.html")
    TextResource view();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy