Examples of drop()


Examples of bibliothek.gui.dock.ScreenDockStation.drop()

          }
          if( !parent.canDrag( dockable )){
            throw new IllegalArgumentException( "cannot drag dockable from its parent" );
          }
          parent.drag( dockable );
          if( !station.drop( dockable, child ) ){
            throw new IllegalStateException( "cannot drop dockable on this station" );
          }
          station.setFullscreen( dockable, true );
        }
      }
View Full Code Here

Examples of bm.db.Database.drop()

                        }

                    case DROP:
                        if( db != null )
                        {
                            db.drop();
                        }
                        else
                        {
                            return null;
                        }
View Full Code Here

Examples of bm.db.Table.drop()

                        case CLOSE_TREE         :
                            table.closeTree();
                            break;

                        case DROP               :
                            table.drop();
                            break;

                        case CREATE_INDEX       :
                            table.createIndex(
                                    Conversor.toString( args[0] ),
View Full Code Here

Examples of bm.db.index.Index.drop()

            final Index index = (Index) indexMap.get(
                    indexInfo[i].getFieldExpression().toLowerCase()
            );
            log.debug( "shutdown index: " + index.getName() );
//            index.shutdown();
            index.drop();
        }
        if( rs != null )
        {
            try
            {
View Full Code Here

Examples of co.cask.cdap.api.dataset.DatasetAdmin.drop()

      responder.sendError(HttpResponseStatus.BAD_REQUEST, msg);
      return;
    }

    DatasetAdmin admin = type.getAdmin(spec);
    admin.drop();
    responder.sendJson(HttpResponseStatus.OK, spec);
  }

  @POST
  @Path("/data/datasets/{name}/admin/truncate")
View Full Code Here

Examples of com.complexible.stardog.api.admin.AdminConnection.drop()

            Stardog.buildServer()
                    .bind(SNARLProtocolConstants.EMBEDDED_ADDRESS)
                    .start();
            AdminConnection dbms = AdminConnectionConfiguration.toEmbeddedServer().credentials(user, pass).connect();
            if (dbms.list().contains(to)) {
                dbms.drop(to);
                dbms.createMemory(to);
            } else {
                dbms.createMemory(to);
            }
            dbms.close();
View Full Code Here

Examples of com.headius.invokebinder.Binder.drop()

            DynamicMethod.NativeCall nc = method.getNativeCall();
            if (method.getArity().isFixed()) {
                if (method.getArity().getValue() <= 3) {
                    Binder b = Binder.from(site.type());
                    if (!nc.hasContext()) {
                        b.drop(0);
                    }

                    if (nc.hasBlock() && !block) {
                        b.insert(site.type().parameterCount() - 1, Block.NULL_BLOCK);
                    } else if (!nc.hasBlock() && block) {
View Full Code Here

Examples of com.headius.invokebinder.SmartBinder.drop()

                if (binder != null) {

                    // clean up non-arguments, ordering, types
                    if (!nc.hasContext()) {
                        binder = binder.drop("context");
                    }

                    if (nc.hasBlock() && !blockGiven) {
                        binder = binder.append("block", Block.NULL_BLOCK);
                    } else if (!nc.hasBlock() && blockGiven) {
View Full Code Here

Examples of com.hp.gloze.Gloze.drop()

        // lift and drop
        Gloze gloze = new Gloze(SILENT);
       
        // list[i] is the base, provide URL for additional imports/includes
        Model m = gloze.lift(xml, list[i].toURL(), list[i].toURI());
        Document doc = gloze.drop(m, list[i].toURI());
        if (positive) assertTrue(Utility.equalXML(xml,doc, true));
        else assertFalse(Utility.equalXML(xml,doc, true));
      } catch (Exception error) {
        fail(error.getMessage());
      }
View Full Code Here

Examples of com.intellij.lang.PsiBuilder.Marker.drop()

    finally {
      if (!result_) {
        marker_.rollbackTo();
      }
      else {
        marker_.drop();
      }
    }
    return result_;
  }
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.