Examples of Selector

@version $Revision: 1.1 $ $Date: 2004/11/26 01:50:44 $ @author Tim Anderson
  • org.graphstream.ui.graphicGraph.stylesheet.Selector
    A selector is the part of a CSS rule that defines to which element a style applies in the graph. @author Antoine Dutot @author Yoann Pign�
  • org.jamesii.asf.database.hibernate.Selector
    Hibernate implementation of a selector. @author Roland Ewald
  • org.jamesii.asf.spdm.generators.Selector
    Super class for selectors, implements idea of using a predictor (see {@link IPerfComparisonPredictor}) to sort a list. @author Roland Ewald
  • org.jboss.dna.graph.query.model.Selector
  • org.jboss.jms.selector.Selector
    This class implements a Message Selector. @author Norbert Lataille @author Juha Lindfors @author Jason Dillon @author Scott Stark @author Tim Fox @version $Revision: 2284 $$Id: Selector.java 2284 2007-02-13 06:47:23Z ovidiu.feodorov@jboss.com $
  • org.jboss.jms.server.selector.Selector
    This class implements a Message Selector. @author Norbert Lataille @author Juha Lindfors @author Jason Dillon @author Scott Stark @author Tim Fox @version $Revision: 3168 $$Id: Selector.java 3168 2007-10-03 02:34:11Z clebert.suconic@jboss.com $
  • org.jitterbit.application.ui.widget.SectionedSplitPane.Selector
  • org.mizartools.dli.Selector
  • org.modeshape.jcr.query.model.Selector
  • org.openstreetmap.josm.gui.mappaint.mapcss.Selector
    MapCSS selector. A rule has two parts, a selector and a declaration block e.g.
     way[highway=residential]     { width: 10; color: blue; }  
    The selector decides, if the declaration block gets applied or not. All implementing classes of Selector are immutable.
  • org.sbml.jsbml.ext.multi.Selector
    A selector is a mask describing the rules that an entity has to pass in order to be used or rejected. This selector is built of different components, carrying state features. The components can be bound together or not. In a population-based model, the selector, when applied to a pool of entities, permits to filter it, and to obtain a further, more refined, entity pool.

    A selector can be reused in various places of a model, to restrict the application of a procedure to a certain set of topologies and states. Selectors can be used to refine the initial conditions of a species, for instance to specify the initial distribution of different states and topologies. They can also be used in a reaction to decide if a this reaction happens, or to modulate its velocity, in function of the state or topology of a reactant.

    A selector defines the list of components composing the mask, that are species type existing under a given state (that can be an ensemble of elementary states). In addition to the components, the selector lists the possible or mandatory bonds, as well as the components that must not be bound. It is to be noted that a selector must not necessarily be the most parsimonious. One can use the selectors to describe the fine-grained topology of complexes, even if this topology is not used to decide upon particular reactions. @author Nicolas Rodriguez @since 1.0 @version $Rev: 1639 $

  • org.scale7.cassandra.pelops.Selector
    Facilitates the selective retrieval of column data from rows in a Cassandra keyspace.

    Note:The methods that are marked as throwing {@link org.scale7.cassandra.pelops.exceptions.NotFoundException}are the only methods in Pelops that throw exceptions under non-failure conditions. @author dominicwilliams

  • org.scopemvc.core.Selector
  • org.skyscreamer.yoga.selector.Selector
  • org.w3c.css.sac.Selector
    This interface defines a selector.

    Remarks: Not all the following selectors are supported (or will be supported) by CSS.

    All examples are CSS2 compliant. @version $Revision: 1.12 $ @author Philippe Le Hegaret

  • org.w3c.flex.forks.css.sac.Selector
    This interface defines a selector.

    Remarks: Not all the following selectors are supported (or will be supported) by CSS.

    All examples are CSS2 compliant. @version $Revision: 1.2 $ @author Philippe Le Hegaret

  • org.xhtmlrenderer.css.newmatch.Selector
    A Selector is really a chain of CSS selectors that all need to be valid for the selector to match. @author Torbjörn Gannholm
  • org.xorm.query.Selector
  • org.zkoss.selector.model.Selector
    @author simonpai
  • r.nodes.exec.Selector
  • reactor.event.selector.Selector
    A {@literal Selector} is a wrapper around an arbitrary object. @author Jon Brisbin @author Stephane Maldini @author Andy Wilkinson
  • tripleplay.ui.Selector
    Maintains a single selected item among a specified set of {@code Element} instances. Theelements may be added individually, or the children of an {@code Elements} may be trackedautomatically.

    A click on a tracked element that implements {@code Clickable} makes it the selected item, or{@code selected} can be used to manually control the selected item.


  • Examples of com.github.sommeri.less4j.core.ast.Selector

        List<HiddenTokenAwareTree> children = token.getChildren();

        ASTCssNode previousKid = null;
        for (HiddenTokenAwareTree kid : children) {
          if (kid.getType() == LessLexer.SELECTOR) {
            Selector selector = handleSelector(kid);
            if (selector != null)
              selectors.add(selector);
            previousKid = selector;
          } else if (kid.getType() == LessLexer.BODY) {
            GeneralBody body = handleGeneralBody(kid);
    View Full Code Here

    Examples of com.google.api.ads.adwords.axis.v201306.cm.Selector

          throws Exception {
        // Get the LocationCriterionService.
        LocationCriterionServiceInterface locationCriterionService =
            adWordsServices.get(session, LocationCriterionServiceInterface.class);

        Selector selector = new Selector();
        selector.setFields(new String[] {"Id", "LocationName", "CanonicalName", "DisplayType",
            "ParentLocations", "Reach", "TargetingStatus"});

        selector.setPredicates(new Predicate[] {
            // Location names must match exactly, only EQUALS and IN are
            // supported.
            new Predicate("LocationName", PredicateOperator.IN, locationNames),
            // Set the locale of the returned location names.
            new Predicate("Locale", PredicateOperator.EQUALS, new String[] {"en"})});
    View Full Code Here

    Examples of com.google.api.ads.adwords.axis.v201309.cm.Selector

      }

      public static void runExample(AdWordsServices adWordsServices, AdWordsSession session,
          Long feedId, Map<Long, String[]> feedItemDescriptions) throws Exception {
        FeedServiceInterface feedService = adWordsServices.get(session, FeedServiceInterface.class);
        Selector selector = new Selector();
        // Do not include "Attributes" because you do not want to pass existing
        // attributes into the subsequent mutate (SET) call.
        selector.setFields(new String[] {"Id", "Attributes"});
        selector.setPredicates(new Predicate[] {
            new Predicate("Id", PredicateOperator.EQUALS, new String[] {feedId.toString()})});
        Feed feed = feedService.get(selector).getEntries()[0];

        // Add new attributes to the feed.
        FeedAttribute[] newAttributes = addLine1And2FeedAttributes(adWordsServices, session, feed);
    View Full Code Here

    Examples of com.google.api.ads.adwords.axis.v201402.cm.Selector

          throws Exception {
        // Get the LocationCriterionService.
        LocationCriterionServiceInterface locationCriterionService =
            adWordsServices.get(session, LocationCriterionServiceInterface.class);

        Selector selector = new SelectorBuilder()
            .fields(
                "Id",
                "LocationName",
                "CanonicalName",
                "DisplayType",
    View Full Code Here

    Examples of com.google.api.ads.adwords.axis.v201406.cm.Selector

        int offset = 0;

        // Create selector.
        SelectorBuilder builder = new SelectorBuilder();
        Selector selector = builder
            .fields("MediaId", "Width", "Height", "MimeType")
            .orderAscBy("MediaId")
            .offset(offset)
            .limit(PAGE_SIZE)
            .in("Type", "IMAGE", "VIDEO")
    View Full Code Here

    Examples of com.google.api.ads.adwords.jaxws.v201309.cm.Selector

       * to clean the builder, the best way to do it, is by creating a new instance.
       *
       * @return the new Selector containing all the configuration that was set previously.
       */
      public Selector build() {
        Selector selectorCopy = new Selector();

        Set<OrderBy> orderingCopy = this.copyOrderingSet();
        Set<Predicate> predicatesCopy = this.copyPredicatesSet();

        selectorCopy.getFields().addAll(Sets.newLinkedHashSet(this.fields));
        selectorCopy.getOrdering().addAll(orderingCopy);
        selectorCopy.getPredicates().addAll(predicatesCopy);

        if (this.dateRange != null) {
          DateRange newDateRange = new DateRange();
          newDateRange.setMin(this.dateRange.getMin());
          newDateRange.setMax(this.dateRange.getMax());
          selectorCopy.setDateRange(newDateRange);
        }
        if (this.paging != null) {
          Paging newPaging = new Paging();
          newPaging.setStartIndex(this.paging.getStartIndex());
          newPaging.setNumberResults(this.paging.getNumberResults());
          selectorCopy.setPaging(newPaging);
        }

        return selectorCopy;
      }
    View Full Code Here

    Examples of com.google.api.ads.adwords.jaxws.v201406.cm.Selector

       *
       * @return the list of accounts.
       * @throws ApiException error retrieving the accounts.
       */
      public List<ManagedCustomer> getAccounts() throws ApiException {
        Selector selector = createAccountSelectorFields();

        // Paging results to avoid RESPONSE_SIZE_LIMIT_EXCEEDED
        List<ManagedCustomer> accountList = Lists.newArrayList();
        try {
          this.retrieveAccounts(selector, accountList);
    View Full Code Here

    Examples of com.google.api.ads.adwords.lib.jaxb.v201306.Selector

        runExample(session, reportFile);
      }

      public static void runExample(AdWordsSession session, String reportFile) throws Exception {
        // Create selector.
        Selector selector = new Selector();
        selector.getFields().addAll(Lists.newArrayList("CampaignId",
            "AdGroupId",
            "Id",
            "CriteriaType",
            "Criteria",
            "Impressions",
    View Full Code Here

    Examples of com.google.api.ads.adwords.lib.jaxb.v201309.Selector

        runExample(session, reportFile);
      }

      public static void runExample(AdWordsSession session, String reportFile) throws Exception {
        // Create selector.
        Selector selector = new Selector();
        selector.getFields().addAll(Lists.newArrayList("CampaignId",
            "AdGroupId",
            "Id",
            "CriteriaType",
            "Criteria",
            "Impressions",
    View Full Code Here

    Examples of com.google.api.ads.adwords.lib.jaxb.v201402.Selector

        runExample(session, reportFile);
      }

      public static void runExample(AdWordsSession session, String reportFile) throws Exception {
        // Create selector.
        Selector selector = new Selector();
        selector.getFields().addAll(Lists.newArrayList("CampaignId",
            "AdGroupId",
            "Id",
            "CriteriaType",
            "Criteria",
            "Impressions",
    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.