Examples of Direction

@author Portet to jme3 by user starcom "Paul Kashofer Austria" @see ImageGraphics
  • com.limelight.input.gamepad.SourceComponent.Direction
  • com.persistit.Key.Direction
  • com.sap.hadoop.windowing.query2.specification.WindowFrameSpec.Direction
  • com.sencha.gxt.core.client.Style.Direction
  • com.sk89q.worldedit.util.Direction
  • com.tinkerpop.blueprints.Direction
  • com.tinkerpop.gremlin.structure.Direction
  • dbfit.util.Direction
  • edu.cmu.cs.stage3.alice.core.Direction
  • edu.stanford.nlp.trees.CollinsRelation.Direction
  • etch.compiler.opt.Direction
    Option which sets the direction of a message ([client->]server, [server->]client, or both.
  • games.stendhal.common.Direction
  • maze.model.Direction
  • models.enumeration.Direction
  • net.sf.minuteProject.configuration.bean.model.data.constant.Direction
  • org.apache.abdera.i18n.text.Bidi.Direction
  • org.apache.etch.compiler.opt.Direction
    Option which sets the direction of a message ([client->]server, [server->]client, or both.
  • org.apache.hadoop.gateway.filter.rewrite.api.UrlRewriter.Direction
  • org.apache.hadoop.hive.ql.parse.WindowingSpec.Direction
  • org.apache.jackrabbit.api.security.user.QueryBuilder.Direction
  • org.apache.metamodel.query.OrderByItem.Direction
  • org.apache.pivot.wtk.Direction
  • org.apache.tapestry.spec.Direction
    Represents different types of parameters. Currently only in and custom are supported, but this will likely change when Tapestry supports out parameters is some form (that reflects form style processing). @author Howard Lewis Ship @version $Id: Direction.java 243791 2004-02-19 17:38:13Z hlship $ @since 2.0.3
  • org.apache.woden.wsdl20.enumeration.Direction
    This class defines the values of the {direction} property of InterfaceMessageReference and InterfaceFaultReference. This property indicates whether a message is coming "in" to the service or going "out" from the service.

    The property is represented in XML by the message or fault reference element's tag name:

    This class uses the typesafe enum pattern. Applications should use the public static final constants defined in this class to specify or to evaluate direction.

    Examples:

     msgRef.setDirection(Direction.IN); if(msgRef.getDirection() == Direction.IN) ... if(msgRef.getDirection().equals(Direction.IN)) ... Note that == and .equals() are equivalent. 
    TODO if extensibility is required, chg ctor to protected @author jkaputin@apache.org
  • org.apache.woden.wsdl20.extensions.rpc.Direction
    Direction is a typesafe enumeration of the four possible values, #in, #out, #inout, and #return. @author Arthur Ryman (ryman@ca.ibm.com)
  • org.chromium.debug.core.model.BreakpointSynchronizer.Direction
  • org.eclipse.egit.core.synchronize.ThreeWayDiffEntry.Direction
  • org.freerealm.map.Direction
    @author Deniz ARIKAN
  • org.gnubridge.core.Direction
  • org.gocha.collection.graph.Path.Direction
  • org.japura.gui.Gradient.Direction
  • org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem.Direction
  • org.jdesktop.swingx.JXBusyLabel.Direction
  • org.jemmy.interfaces.Caret.Direction
  • org.jpacman.framework.model.Direction
  • org.kite9.diagram.position.Direction
    Formats are used to turn sentences into diagram objects. For example, "Cathy goes shopping" could be represented on in ADL as glyphs for Cathy and Shopping, and an Arrow for goes. The format manages this conversion. @author moffatr
  • org.maltparserx.core.syntaxgraph.headrules.Direction
  • org.meb.speedway.SortOrder.Direction
  • org.mokai.Message.Direction
  • org.neo4j.graphdb.Direction
  • org.openhab.binding.tcp.Direction
  • org.openstreetmap.josm.gui.dialogs.relation.sort.WayConnectionType.Direction
  • org.owasp.passfault.keyboard.Key.Direction
  • org.pokenet.server.backend.entity.Positionable.Direction
  • org.pshdl.interpreter.VariableInformation.Direction
  • org.rascalmpl.interpreter.TraversalEvaluator.DIRECTION
  • org.sfaci.jumper2dx.characters.Platform.Direction
  • org.springframework.data.domain.Sort.Direction
  • org.teiid.language.Argument.Direction
  • org.terasology.math.Direction
  • org.zaproxy.zap.extension.websocket.WebSocketMessage.Direction
  • pivot.wtk.Direction
  • zelda.karacter.Direction

  • Examples of org.eclipse.egit.core.synchronize.ThreeWayDiffEntry.Direction

        GitSyncObjectCache obj = cache.get(path);
        if (obj == null)
          return IN_SYNC;

        int direction;
        Direction gitDirection = obj.getDiffEntry().getDirection();
        if (gitDirection == Direction.INCOMING)
          direction = INCOMING;
        else if (gitDirection == Direction.OUTGOING)
          direction = OUTGOING;
        else
    View Full Code Here

    Examples of org.freerealm.map.Direction

            }
        }

        public static Direction getDirection(Realm realm, Coordinate coordinate, Coordinate directionCoordinate) {
            for (int i = 0; i < RealmConstants.directions.length; i++) {
                Direction direction = RealmConstants.directions[i];
                Coordinate tryCoordinate = Utility.getRelativeCoordinate(realm, coordinate, direction);
                if (directionCoordinate.equals(tryCoordinate)) {
                    return direction;
                }
            }
    View Full Code Here

    Examples of org.gnubridge.core.Direction

        }
        return result;
      }

      public Direction getDummy() {
        Direction result = null;
        if (biddingFinished() && getHighCall() != null) {
          for (Call call : calls) {
            if (call.getBid().hasTrump() && call.getTrump().equals(getHighCall().getTrump())
                && call.pairMatches(getHighCall().getDirection())) {
              result = call.getDirection().opposite();
    View Full Code Here

    Examples of org.gocha.collection.graph.Path.Direction

        }

        @Override
        public N getLastNode() {
            Edge<N,E> e = getLastEdge();
            Direction d = getDirection();
            if( e==null )return null;
            return d==null ? e.getNodeB() : (d.equals(Direction.AB) ? e.getNodeB() : e.getNodeA());
        }
    View Full Code Here

    Examples of org.japura.gui.Gradient.Direction

      private void paintGradient(Gradient gradient, Graphics g) {
      Insets insets = getInsets();

      Graphics2D g2d = (Graphics2D) g;
      GradientPaint gp = null;
      Direction direction = gradient.getDirection();
      Color firstColor = gradient.getFirstColor();
      Color secondColor = gradient.getSecondColor();

      int y = insets.top;
      int x = insets.left;
      int w = getWidth() - (insets.left + insets.right);
      int h = getHeight() - (insets.bottom + insets.top);

      if (direction.equals(Direction.TOP_TO_BOTTOM)) {
        gp = new GradientPaint(0, y, firstColor, 0, h, secondColor);
      } else if (direction.equals(Direction.BOTTOM_TO_TOP)) {
        gp = new GradientPaint(0, y, secondColor, 0, h, firstColor);
      } else if (direction.equals(Direction.LEFT_TO_RIGHT)) {
        gp = new GradientPaint(x, 0, firstColor, w, 0, secondColor);
      } else if (direction.equals(Direction.RIGHT_TO_LEFT)) {
        gp = new GradientPaint(x, 0, secondColor, w, 0, firstColor);
      }
      g2d.setPaint(gp);
      g2d.fillRect(x, y, w, h);
      }
    View Full Code Here

    Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem.Direction

          wsdlBinding.addOperation(bindingOperation);
       }

       protected void addSignatureItem(WSDLInterfaceOperation operation, ParameterMetaData param, boolean isReturn)
       {
          Direction direction;
          if (isReturn)
          {
             direction = Direction.RETURN;
          }
          else if (param.getMode() == ParameterMode.INOUT)
    View Full Code Here

    Examples of org.jdesktop.swingx.JXBusyLabel.Direction

        /**
         * Sets new spinning direction.
         * @param dir Spinning direction.
         */
        public void setDirection(Direction dir) {
            Direction old = getDirection();
            this.direction = dir;
            if (getDirection() != old && getDirection() != null
                    && !getDirection().equals(old)) {
                firePropertyChange("direction", old, getDirection());
            }
    View Full Code Here

    Examples of org.jemmy.interfaces.Caret.Direction

    //        Caret c = tableViewWrap.as(Scroll.class).caret();
            CaretOwner scroller = (CaretOwner) tableViewWrap.as(Parent.class, Node.class).
                    lookup(ScrollBar.class).as(CaretOwner.class);
            Caret c = scroller.caret();

            Direction direction = new Direction() {

                /**
                 * @return < 0 to scroll toward decreasing value, > 0 - vice versa
                 * 0 to stop scrolling
                 * NOTE - see implementation KnobDragScrollerImpl.to(Direction) which is used in ScrollBarWrap
    View Full Code Here

    Examples of org.jpacman.framework.model.Direction

                Ghost theGhost = getRandomGhost();
                if (theGhost == null) {
                    return;
                }
                int dirIndex = getRandomizer().nextInt(Direction.values().length);
                final Direction dir = Direction.values()[dirIndex];
                gameInteraction().moveGhost(theGhost, dir);
            }
        }
    View Full Code Here

    Examples of org.kite9.diagram.position.Direction

                  : new TextLine(fromLabel);
              String toLabel = getLabel(object, to, ii);
              TextLine toLabelTL = toLabel.length() == 0 ? null
                  : new TextLine(toLabel);

              Direction direction = d == null ? activeVerb.getDirection()
                  : d;
              if (verb.getType() == RelationshipType.PASSIVE) {
                ii.returnConnection(toEl, arrowEl, or, toLabelTL, null, false, direction);
                if (!arrowPreExists) {
                  ii.returnConnection(arrowEl, fromEl, null, null, fromLabelTL, true, direction);
    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.