Package org.drools.guvnor.client.packages

Source Code of org.drools.guvnor.client.packages.ArtifactEditor$ArtifactEditorBinder

/*
* Copyright 2005 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/

package org.drools.guvnor.client.packages;

import org.drools.guvnor.client.common.LoadingPopup;
import org.drools.guvnor.client.rpc.Artifact;
import org.drools.guvnor.client.ruleeditor.GuvnorEditor;
import org.drools.guvnor.client.ruleeditor.MessageWidget;
import org.drools.guvnor.client.ruleeditor.MetaDataWidgetNew;
import org.drools.guvnor.client.ruleeditor.RuleDocumentWidget;
import org.drools.guvnor.client.rulelist.OpenItemCommand;

import com.google.gwt.core.client.GWT;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.client.Command;
import com.google.gwt.user.client.ui.Widget;

/**
* The generic editor for all types of artifacts.
*/
public class ArtifactEditor extends GuvnorEditor {
  interface ArtifactEditorBinder extends UiBinder<Widget, ArtifactEditor> {
  }

    private static ArtifactEditorBinder                   uiBinder  = GWT.create( ArtifactEditorBinder.class );

    @UiField(provided = true)
    final MetaDataWidgetNew                              metaWidget;

    @UiField(provided = true)
    final RuleDocumentWidget                          ruleDocumentWidget;

    @UiField
    MessageWidget                                     messageWidget;
   
    protected Artifact                                artifact;
    private boolean                                   readOnly;
    private long lastSaved = System.currentTimeMillis();
   
    /**
     * @param Artifact artifact
     */
    public ArtifactEditor(Artifact artifact) {
    this(artifact, false, null, null, null);
    }

    /**
     * @param Artifact artifact
     * @param historicalReadOnly true if this is a read only view for historical purposes.
     */
  public ArtifactEditor(Artifact artifact, boolean historicalReadOnly) {
    this(artifact, historicalReadOnly, null, null, null);
    }

    /**
     * @param Artifact artifact
     * @param historicalReadOnly true if this is a read only view for historical purposes.
     * @param actionToolbarButtonsConfigurationProvider
     *            used to change the default button configuration provider.
     */
    public ArtifactEditor(
            Artifact artifact,
            boolean historicalReadOnly,
            Command refreshCommand,
            final OpenItemCommand openItemCommand,
            final Command closeCommand) {
        this.artifact = artifact;
        this.readOnly = historicalReadOnly || artifact.isreadonly;

        ruleDocumentWidget = new RuleDocumentWidget(this.artifact,
                readOnly);

        metaWidget = new MetaDataWidgetNew(this.artifact, readOnly,
                this.artifact.uuid, refreshCommand, openItemCommand, closeCommand);

        initWidget(uiBinder.createAndBindUi(this));
        setWidth("100%");
        LoadingPopup.close();
    }

    @Override
    public boolean isDirty() {
        return (System.currentTimeMillis() - lastSaved) > 3600000;
    }

    protected boolean hasDirty() {
        // not sure how to implement this now.
        return false;
    }

    public void showInfoMessage(String message) {
        messageWidget.showMessage( message );
    }
}
TOP

Related Classes of org.drools.guvnor.client.packages.ArtifactEditor$ArtifactEditorBinder

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.