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 com.cburch.logisim.data.Direction

      static void paintInputLines(InstancePainter painter, AbstractGate factory) {
        Location loc = painter.getLocation();
        boolean printView = painter.isPrintView();
        GateAttributes attrs = (GateAttributes) painter.getAttributeSet();
        Direction facing = attrs.facing;
        int inputs = attrs.inputs;
        int negated = attrs.negated;
       
        int[] lengths = getInputLineLengths(attrs, factory);
        if (painter.getInstance() == null) { // drawing ghost - negation bubbles only
    View Full Code Here

    Examples of com.cburch.logisim.data.Direction

        Object ret = INPUT_LENGTHS.get(key);
        if (ret != null) {
          return (int[]) ret;
        }
       
        Direction facing = attrs.facing;
        if (facing != Direction.EAST) {
          attrs = (GateAttributes) attrs.clone();
          attrs.facing = Direction.EAST;
        }
    View Full Code Here

    Examples of com.cburch.logisim.data.Direction

        }
      }
     
      @Override
      public Bounds getOffsetBounds(AttributeSet attrs) {
        Direction dir = attrs.getValue(StdAttr.FACING);
        BitWidth select = attrs.getValue(Plexers.ATTR_SELECT);
        int inputs = 1 << select.getWidth();
        if (inputs == 2) {
          return Bounds.create(-30, -20, 30, 40).rotate(Direction.EAST, dir, 0, 0);
        } else {
    View Full Code Here

    Examples of com.cburch.logisim.data.Direction

        }
      }
     
      @Override
      public boolean contains(Location loc, AttributeSet attrs) {
        Direction facing = attrs.getValue(StdAttr.FACING);
        return Plexers.contains(loc, getOffsetBounds(attrs), facing);
      }
    View Full Code Here

    Examples of com.cburch.logisim.data.Direction

          instance.fireInvalidated();
        }
      }

      private void updatePorts(Instance instance) {
        Direction dir = instance.getAttributeValue(StdAttr.FACING);
        Object selectLoc = instance.getAttributeValue(Plexers.ATTR_SELECT_LOC);
        BitWidth data = instance.getAttributeValue(StdAttr.WIDTH);
        BitWidth select = instance.getAttributeValue(Plexers.ATTR_SELECT);
        boolean enable = instance.getAttributeValue(Plexers.ATTR_ENABLE).booleanValue();
       
    View Full Code Here

    Examples of com.cburch.logisim.data.Direction

        state.setPort(inputs + (enable ? 2 : 1), out, Plexers.DELAY);
      }
     
      @Override
      public void paintGhost(InstancePainter painter) {
        Direction facing = painter.getAttributeValue(StdAttr.FACING);
        BitWidth select = painter.getAttributeValue(Plexers.ATTR_SELECT);
        Plexers.drawTrapezoid(painter.getGraphics(), painter.getBounds(),
            facing, select.getWidth() == 1 ? 10 : 20);
      }
    View Full Code Here

    Examples of com.cburch.logisim.data.Direction

      @Override
      public void paintInstance(InstancePainter painter) {
        Graphics g = painter.getGraphics();
        Bounds bds = painter.getBounds();
        Direction facing = painter.getAttributeValue(StdAttr.FACING);
        BitWidth select = painter.getAttributeValue(Plexers.ATTR_SELECT);
        boolean enable = painter.getAttributeValue(Plexers.ATTR_ENABLE).booleanValue();
        int inputs = 1 << select.getWidth();
       
        // draw stubs for select/enable inputs that aren't on instance boundary
    View Full Code Here

    Examples of com.cburch.logisim.data.Direction

        setFacingAttribute(StdAttr.FACING);
      }
     
      @Override
      public Bounds getOffsetBounds(AttributeSet attrs) {
        Direction facing = attrs.getValue(StdAttr.FACING);
        Bounds base = Bounds.create(-30, -15, 30, 30);
        return base.rotate(Direction.EAST, facing, 0, 0);
      }
    View Full Code Here

    Examples of com.cburch.logisim.data.Direction

      @Override
      public Bounds getOffsetBounds(AttributeSet attrs) {
        Object value = attrs.getValue(ATTR_SIZE);
        if (value == SIZE_NARROW) {
          Direction facing = attrs.getValue(StdAttr.FACING);
          if (facing == Direction.SOUTH) return Bounds.create(-9, -20, 18, 20);
          if (facing == Direction.NORTH) return Bounds.create(-9,   0, 18, 20);
          if (facing == Direction.WEST) return Bounds.create(0, -9, 20, 18);
          return Bounds.create(-20, -9, 20, 18);
        } else {
          Direction facing = attrs.getValue(StdAttr.FACING);
          if (facing == Direction.SOUTH) return Bounds.create(-9, -30, 18, 30);
          if (facing == Direction.NORTH) return Bounds.create(-9,   0, 18, 30);
          if (facing == Direction.WEST) return Bounds.create(0, -9, 30, 18);
          return Bounds.create(-30, -9, 30, 18);
        }
    View Full Code Here

    Examples of com.cburch.logisim.data.Direction

        }
      }
     
      private void configurePorts(Instance instance) {
        Object size = instance.getAttributeValue(ATTR_SIZE);
        Direction facing = instance.getAttributeValue(StdAttr.FACING);
        int dx = size == SIZE_NARROW ? -20 : -30;

        Port[] ports = new Port[2];
        ports[0] = new Port(0, 0, Port.OUTPUT, StdAttr.WIDTH);
        Location out = Location.create(0, 0).translate(facing, dx);
    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.