Package java.util

Examples of java.util.BitSet


  /**
   * Construct a new syntax object with all bits turned off.
   * This is equivalent to RE_SYNTAX_EMACS.
   */
  public RESyntax() {
    bits = new BitSet(BIT_TOTAL);
  }
View Full Code Here


   
    mainSwitch.addChild(branchgroup);
    mainSwitch.addChild(axisGroup);
    mainSwitch.setCapability(Switch.ALLOW_SWITCH_READ);
    mainSwitch.setCapability(Switch.ALLOW_SWITCH_WRITE);
    BitSet bs = mainSwitch.getChildMask();
    bs.set(0,true);
    bs.set(1,true);
    mainSwitch.setChildMask(bs);
       
        rootGroup.addChild(mainSwitch);
       
        universe.addBranchGraph(rootGroup);
View Full Code Here

        lightVector = null;
            attach();
      }
     
    }else if (action.equals("Hide axis")) {
      BitSet bs = mainSwitch.getChildMask();
      bs.set(1,false);
      mainSwitch.setChildMask(bs);
     
    }else if (action.equals("Show axis")) {
      BitSet bs = mainSwitch.getChildMask();
      bs.set(1,true);
      mainSwitch.setChildMask(bs);
     
    }else if (action.equals(NodeResourcesManager.getResources().getStringValue("SaveAs"))) {
      //   Select a Systema file
      Java3DPlugin3DFileFilter filter = new Java3DPlugin3DFileFilter();
View Full Code Here

   
    mainSwitch.addChild(branchgroup);
    mainSwitch.addChild(axisGroup);
    mainSwitch.setCapability(Switch.ALLOW_SWITCH_READ);
    mainSwitch.setCapability(Switch.ALLOW_SWITCH_WRITE);
    BitSet bs = mainSwitch.getChildMask();
    bs.set(0,true);
    bs.set(1,true);
    mainSwitch.setChildMask(bs);
       
        rootGroup.addChild(mainSwitch);
       
        universe.addBranchGraph(rootGroup);
View Full Code Here

    public SwitchNode(ActiveNode parent) {
        super(parent);
        anonymousNodeNumber++;
        name = NodeResourcesManager.getNodeName("Switch") + ((anonymousNodeNumber == 1) ? "" : String.valueOf(anonymousNodeNumber));
        status = new BitSet();
    }
View Full Code Here

      return false;
    return true;
  }
 
  public static Int128 XOR(Int128 a, Int128 b) {
    BitSet xor_bit_set = (BitSet) a.getBitSet().clone();
    xor_bit_set.xor(b.getBitSet());
    return new Int128(xor_bit_set);
  }
View Full Code Here

        }

        @Override
        public void setPropertyValue(Integer res) {
            boolean forced=forceCapability(Switch.ALLOW_SWITCH_WRITE);
            BitSet b=new BitSet();
            SwitchAnimator.intToBitSet(res.intValue(),b);
            _object.setChildMask(b);
            if(forced) restoreCapability(Switch.ALLOW_SWITCH_WRITE);
        }
View Full Code Here

  private BitSet bit_set;
 
  private int mark = -1;
 
  public Int128() {
    bit_set = new BitSet(128);
   
  }
View Full Code Here

 
  /**
   * Create Int128 from stored value
   */
  public Int128(byte[] byteArray) {
    bit_set = new BitSet(128);
   
    ByteBuffer reversed = Misc.getByteBuffer(16);
   
    ByteBuffer tmp = Misc.getByteBuffer(4);

View Full Code Here

                        if(s.getWhichChild()!=params[0]){
                            s.setWhichChild(params[0]);
                        }
                        break;
                    case MASK:
                        BitSet b=new BitSet();
                        intToBitSet(params[0],b);
                        if(!b.equals(s.getChildMask())){
                            ((Switch)o.getObject()).setChildMask(b);
                        }
                        break;
                    }
                }
View Full Code Here

TOP

Related Classes of java.util.BitSet

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.