Examples of Mode

@author Portet to jme3 by user starcom "Paul Kashofer Austria" @see ImageGraphics
  • com.jverrecchia.initializr.builder.mode.Mode
  • com.lightcrafts.ui.mode.Mode
    Modes for mouse interaction with images. A Mode has an overlay JComponent where it may draw things that will be superposed with an image; an AffineTransform that will help it figure out the relation between the dimensions of its overlay and an Engine's image bounds; and an autoscroll property, to determine whether the overlay should receive synthetic mouse events in a JScrollPane.
  • com.linkedin.data.transform.patch.validator.PatchFilterValidator.Mode
  • com.thebuzzmedia.imgscalr.Scalr.Mode
  • de.saumya.mojo.jruby.JRubyVersion.Mode
  • jadx.core.dex.regions.conditions.IfCondition.Mode
  • javax.jws.WebParam.Mode
  • javax.xml.ws.Service.Mode
  • jscicalc.pobject.Mode
    Information for Mode button. @see ModeButton @author J. D. Lamb @version $Revision: 1.4 $
  • mage.abilities.Mode
    @author BetaSteward_at_googlemail.com
  • net.sf.saxon.trans.Mode
    A Mode is a collection of rules; the selection of a rule to apply to a given element is determined by a Pattern. @author Michael H. Kay
  • opennlp.ccg.hylo.Mode
    ohio-state.edu/~scott/">Scott Martin @version $Revision: 1.2 $, $Date: 2005/10/19 21:27:15 $
  • org.apache.ace.log.server.task.LogSyncTask.Mode
  • org.apache.directory.server.core.integ.annotations.Mode
  • org.apache.hadoop.hive.ql.exec.vector.VectorExpressionDescriptor.Mode
  • org.apache.hadoop.hive.ql.udf.generic.GenericUDAFEvaluator.Mode
  • org.apache.isis.viewer.wicket.model.models.ActionModel.Mode
  • org.apache.nutch.tools.proxy.FakeHandler.Mode
  • org.apache.openejb.server.axis.assembler.JaxRpcParameterInfo.Mode
  • org.apache.poi.ss.formula.functions.Mode
    @author Amol S. Deshmukh < amolweb at ya hoo dot com >
  • org.apache.stanbol.entityhub.servicesapi.query.ValueConstraint.MODE
  • org.auraframework.system.AuraContext.Mode
  • org.boris.expr.function.excel.MODE
  • org.freeplane.features.map.MapWriter.Mode
  • org.gatein.pc.api.Mode
    @author Julien Viet @version $Revision: 7867 $
  • org.geotools.swt.styling.simple.Mode
  • org.h2.engine.Mode
    The compatibility modes. There is a fixed set of modes (for example PostgreSQL, MySQL). Each mode has different settings.
  • org.imgscalr.Scalr.Mode
  • org.jacorb.test.bugs.bugjac565.ModulatorPackage.Mode
  • org.jboss.aerogear.AeroGearCrypto.Mode
  • org.jboss.msc.service.ServiceController.Mode
  • org.jboss.portal.Mode
    @author Julien Viet @version $Revision: 7867 $
  • org.jdesktop.wonderland.modules.audiomanager.client.voicechat.AddHUDPanel.Mode
  • org.jivesoftware.smack.packet.Presence.Mode
  • org.kie.internal.runtime.beliefs.Mode
  • org.lealone.engine.Mode
    The compatibility modes. There is a fixed set of modes (for example PostgreSQL, MySQL). Each mode has different settings.
  • org.lilyproject.runtime.rapi.Mode
  • org.locationtech.udig.style.sld.simple.Mode
  • org.mizartools.dli.Mode
  • org.neo4j.webadmin.domain.ServerRootRepresentation.Mode
  • org.openhab.io.squeezeserver.SqueezePlayer.Mode
  • org.openide.windows.Mode
  • org.openmrs.module.htmlformentry.FormEntryContext.Mode
  • org.openstreetmap.josm.gui.io.SaveLayersModel.Mode
  • org.pdf4j.saxon.trans.Mode
    A Mode is a collection of rules; the selection of a rule to apply to a given element is determined by a Pattern. @author Michael H. Kay
  • org.qi4j.api.structure.Application.Mode
  • org.richfaces.component.Mode
  • org.richfaces.ui.common.Mode
  • org.rssowl.ui.internal.notifier.NotificationService.Mode
  • org.teiid.query.processor.relational.SortUtility.Mode
  • play.Play.Mode

  • Examples of org.jboss.portal.Mode

          ContainerUserInfo user = new ContainerUserInfo(supportedUserAttributes);

          // Build custom mode infos for reuse in portlet info
          for (CustomPortletModeMetaData customPortletModeMD : portletApplicationMD.getCustomPortletModes().values())
          {
             Mode mode = Mode.create(customPortletModeMD.getPortletMode());

             //
             LocalizedString description = customPortletModeMD.getDescription();

             //
    View Full Code Here

    Examples of org.jdesktop.wonderland.modules.audiomanager.client.voicechat.AddHUDPanel.Mode

      updateUserList();
        }

        private void updateUserList() {
      Mode mode = addHUDPanel.getMode();

      if (mode.equals(Mode.ADD) || mode.equals(Mode.INITIATE)) {
          addNonMembers();
      } else if (mode.equals(Mode.IN_PROGRESS)) {
          addMembers();
      }
        }
    View Full Code Here

    Examples of org.jivesoftware.smack.packet.Presence.Mode

                if (fields.containsKey("")) {
                } else if (fields.containsKey("chat")) {
                    System.out.println("Sending CHat" + fields);
                    sendChatMessage(fields);
                } else if (fields.containsKey("status")) {
                    Mode mode = Mode.available;
                    if (fields.get("mode").equalsIgnoreCase("dnd")) {
                        mode = Mode.dnd;
                    } else if (fields.get("mode").equalsIgnoreCase("away")) {
                        mode = Mode.away;
                    } else if (fields.get("mode").equalsIgnoreCase("xa")) {
    View Full Code Here

    Examples of org.kie.internal.runtime.beliefs.Mode

                                         final RuleImpl rule,
                                         final ObjectTypeConf typeConf,
                                         final boolean read) {
            BeliefSystem beliefSystem = defaultBeliefSystem;
            if ( value != null && value instanceof Mode & !( value instanceof SimpleMode ) ) {
                Mode mode = (Mode) value;
                beliefSystem = (BeliefSystem) mode.getBeliefSystem();
            }

            BeliefSet beliefSet = handle.getEqualityKey().getBeliefSet();
            if ( beliefSet == null ) {
                if ( context.getType() == PropagationContext.MODIFICATION ) {
    View Full Code Here

    Examples of org.lealone.engine.Mode

                    if (primaryKey) {
                        session.setLastIdentity(value);
                    }
                }
            }
            Mode mode = session.getDatabase().getMode();
            if (value == ValueNull.INSTANCE) {
                if (convertNullToDefault) {
                    synchronized (this) {
                        value = defaultExpression.getValue(session).convertTo(type);
                    }
    View Full Code Here

    Examples of org.lealone.engine.Mode

            }
            switch (opType) {
            case NEGATE:
                return l == ValueNull.INSTANCE ? l : l.negate();
            case CONCAT: {
                Mode mode = session.getDatabase().getMode();
                if (l == ValueNull.INSTANCE) {
                    if (mode.nullConcatIsNull) {
                        return ValueNull.INSTANCE;
                    }
                    return r;
    View Full Code Here

    Examples of org.lealone.engine.Mode

         * @param newRow the row to check
         * @return true if one of the columns is null and multiple nulls in unique
         *         indexes are allowed
         */
        protected boolean containsNullAndAllowMultipleNull(SearchRow newRow) {
            Mode mode = database.getMode();
            if (mode.uniqueIndexSingleNull) {
                return false;
            } else if (mode.uniqueIndexSingleNullExceptAllColumnsAreNull) {
                for (int index : columnIds) {
                    Value v = newRow.getValue(index);
    View Full Code Here

    Examples of org.lealone.engine.Mode

            case NOW:
            case CURRENT_TIMESTAMP: {
                long now = session.getTransactionStart();
                ValueTimestamp vt = ValueTimestamp.get(new Timestamp(now));
                if (v0 != null) {
                    Mode mode = database.getMode();
                    vt = (ValueTimestamp) vt.convertScale(mode.convertOnlyToSmallerScale, v0.getInt());
                }
                result = vt;
                break;
            }
            case DATABASE:
                result = ValueString.get(database.getShortName());
                break;
            case USER:
            case CURRENT_USER:
                result = ValueString.get(session.getUser().getName());
                break;
            case IDENTITY:
                result = session.getLastIdentity();
                break;
            case SCOPE_IDENTITY:
                result = session.getLastScopeIdentity();
                break;
            case AUTOCOMMIT:
                result = ValueBoolean.get(session.getAutoCommit());
                break;
            case READONLY:
                result = ValueBoolean.get(database.isReadOnly());
                break;
            case DATABASE_PATH: {
                String path = database.getDatabasePath();
                result = path == null ? (Value) ValueNull.INSTANCE : ValueString.get(path);
                break;
            }
            case LOCK_TIMEOUT:
                result = ValueInt.get(session.getLockTimeout());
                break;
            case DISK_SPACE_USED:
                result = ValueLong.get(getDiskSpaceUsed(session, v0));
                break;
            case CAST:
            case CONVERT: {
                v0 = v0.convertTo(dataType);
                Mode mode = database.getMode();
                v0 = v0.convertScale(mode.convertOnlyToSmallerScale, scale);
                v0 = v0.convertPrecision(getPrecision(), false);
                result = v0;
                break;
            }
    View Full Code Here

    Examples of org.lealone.engine.Mode

                int value = getIntValue();
                database.setMaxOperationMemory(value);
                break;
            }
            case SetTypes.MODE:
                Mode mode = Mode.getInstance(stringValue);
                if (mode == null) {
                    throw DbException.get(ErrorCode.UNKNOWN_MODE_1, stringValue);
                }
                if (database.getMode() != mode) {
                    session.getUser().checkAdmin();
    View Full Code Here

    Examples of org.lilyproject.runtime.rapi.Mode

            LilyRuntime runtime = new LilyRuntime(settings);

            if (cmd.hasOption(modeOption.getOpt())) {
                String optionValue = cmd.getOptionValue(modeOption.getOpt());
                Mode mode = Mode.byName(optionValue);
                runtime.setMode(mode);
            }

            if (cmd.hasOption(versionOption.getOpt())) {
                System.out.println(runtime.buildModel().moduleInfo(System.getProperty("lilyruntime.info.module")));
    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.