Package com.data2semantics.yasgui.client.tab.optionbar.endpoints

Examples of com.data2semantics.yasgui.client.tab.optionbar.endpoints.EndpointInput


    if (view.getSettings().isDbSet()) {
      bookmarkedQueries = new BookmarkedQueries(view);
      queryOptions.addMember(bookmarkedQueries);
    }
    if (view.getEnabledFeatures().endpointSelectionEnabled()) {
      endpointInput = new EndpointInput(view, this);
      queryOptions.addMember(endpointInput);
   
      searchIcon = new EndpointSearch(view);
      queryOptions.addMember(searchIcon);
View Full Code Here


  private void fetchProperties() {
    //onblur might not always fire (will have to check that). for now, store query in settings before query execution just to be sure
    view.getCallableJsMethods().storeQueryInCookie();
    queryString = view.getSelectedTabSettings().getQueryString();
    //the same happens whenever our endpointinput has focus
    EndpointInput endpointInput = view.getSelectedTab().getEndpointInput();
    if (endpointInput != null) {
      endpointInput.storeEndpointInSettings();
    }
    endpoint = view.getSelectedTabSettings().getEndpoint();
    view.checkAndAddEndpointToDs(endpoint);
   
   
View Full Code Here

    }
   
    //onblur might not always fire (will have to check that). for now, store query in settings before query execution just to be sure
    view.getCallableJsMethods().storeQueryInCookie();
    //the same happens whenever our endpointinput has focus
    EndpointInput endpointInput = view.getSelectedTab().getEndpointInput();
    if (endpointInput != null) {
      endpointInput.storeEndpointInSettings();
    }
    view.checkAndAddEndpointToDs(endpoint);
  }
View Full Code Here

  public boolean endpointSelectionEnabled() {
    return view.getEnabledFeatures().endpointSelectionEnabled();
  }
 
  public String getCurrentEndpoint() {
    EndpointInput endpointInput = view.getSelectedTab().getEndpointInput();
    if (endpointInput != null) {
      endpointInput.storeEndpointInSettings();
    }
    return view.getSelectedTabSettings().getEndpoint();
  }
View Full Code Here

TOP

Related Classes of com.data2semantics.yasgui.client.tab.optionbar.endpoints.EndpointInput

Copyright © 2018 www.massapicom. 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.