Examples of View


Examples of com.google.collide.client.ui.tooltip.Coachmark.View

// TODO: Generalize the class, it currently isn't so general.
public class Coachmark extends UiComponent<View> {

  public static Coachmark create(
      Tooltip.Resources res, Renderer renderer, PositionController.Positioner positioner) {
    View view = new View(res.coachmarkCss());
    return new Coachmark(view, renderer, new PositionController(positioner, view.getElement()));
  }
View Full Code Here

Examples of com.google.devtools.depan.eclipse.visualization.View

    GridLayout pageLayout = new GridLayout();
    pageLayout.numColumns = 1;
    parent.setLayout(pageLayout);

    // bottom composite containing main diagram
    renderer = new View(parent, SWT.NONE, this);
    renderer.setLayoutData(
        new GridData(SWT.FILL, SWT.FILL, true, true));

    // Configure the rendering pipe before listening for changes.
    renderer.setGraphModel(getViewGraph(), getJungGraph(), getNodeRanking());
View Full Code Here

Examples of com.habitsoft.kiyaa.views.View

  public void addBreak() {
    addRow();
  }
  public void clearFields() {
    for (Column col : columns) {
      View view = col.getView();
      view.clearFields();
    }
  }
View Full Code Here

Examples of com.skymobi.monitor.model.View

    @RequestMapping(value = "/admin/views/save")
    public @ResponseBody
    WebResult createView(HttpEntity<View> entity,  ModelMap map) {
        WebResult result=new WebResult();
        try{
            View view=entity.getBody();
            Assert.isTrue(view.getName().length() > 0,"name should not be null");
            logger.debug("save view ={}",view);
            viewService.saveView(view);
        } catch (Exception e){
            result.setSuccess(false);
            result.setMessage(e.getMessage());
View Full Code Here

Examples of com.starbase.starteam.View

        throws BuildException
    {
        Folder starteamrootfolder = null;
        try {
            // no root local mapping has been specified.
            View snapshot = openView();

            // find the starteam folder specified to be the root of the
            // operation.  Throw if it can't be found.

            starteamrootfolder =
                    StarTeamFinder.findFolder(snapshot.getRootFolder(),
                            this.rootStarteamFolder);

        }
        catch (BuildException e) {
            throw e;
View Full Code Here

Examples of com.szuppe.jakub.view.View

    // Kolejka blokująca dla widoku i kontrolera.
    final BlockingQueue<AppEvent> eventsBlockingQueue = new LinkedBlockingQueue<AppEvent>();
    // model
    final Model model = new Model();
    // widok
    final View view = new View(eventsBlockingQueue);
    // kontroler
    final Controller controller = new Controller(model, view, eventsBlockingQueue);
    // Uruchomienie.
    controller.init();
  }
View Full Code Here

Examples of com.tivo.hme.sdk.View

    if (!validated) {
      validated = true;
      totalHeight = 0;
      int count = getChildCount();
      for (int i=0; i < count; i++) {
        View view = getChild(i);
        totalHeight = Math.max(view.getY() + view.getHeight(), totalHeight);
      }
      refresh();
    }
  }
View Full Code Here

Examples of com.vaadin.navigator.View

    // that can be received and handled by them
    public void selectedTabChange(final SelectedTabChangeEvent event) {
        eventBus.publish(context.getBean(HeaderView.class), ControlsContext.empty());
        Component c = event.getTabSheet().getSelectedTab();
        if (View.class.isAssignableFrom(c.getClass())) {
            View v = (View) c;
            Annotation[] annotations = v.getClass().getAnnotations();
            if (ArrayUtils.isNotEmpty(annotations)) {
                for (Annotation a: annotations) {
                    if (a instanceof VaadinView) {
                        VaadinView vv = (VaadinView) a;
                        // really just need the presenter whose name matched VaadinView#name to be
View Full Code Here

Examples of com.xith3d.scenegraph.View

    if(peerWindow!=null){
        peerWindow.setLocation(x, y);
    }
    canvas=new Canvas3D();
    canvas.set3DPeer(canvasPeer);
    view = new View();
   
    view.addCanvas3D(canvas);

    if(peerComponent!=null){
      peerComponent.addMouseListener(this);
View Full Code Here

Examples of com.yammer.dropwizard.views.View

      user.setSessionToken(null);
      userDao.saveOrUpdate(user);
      model.setUser(null);
    }

    View view = new PublicFreemarkerView<BaseModel>("common/home.ftl", model);

    // Remove the session token which will have the effect of logout
    return Response
      .ok()
      .cookie(replaceSessionTokenCookie(Optional.<User>absent()))
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.