/* * Copyright 2010 Red Hat, Inc. and/or its affiliates. * * 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.workbench.screens.testscenario.client; import com.google.gwt.user.client.ui.Composite; import com.google.gwt.user.client.ui.Panel; import com.google.gwt.user.client.ui.SimplePanel; import org.drools.workbench.models.testscenarios.shared.CollectionFieldData; import org.drools.workbench.models.testscenarios.shared.ExecutionTrace; import org.drools.workbench.models.testscenarios.shared.Fact; import org.drools.workbench.models.testscenarios.shared.Scenario; import org.kie.workbench.common.widgets.client.datamodel.AsyncPackageDataModelOracle; /** * Constraint editor for the FieldData in the Given Section */ public class CollectionFieldDataConstraintEditor extends Composite implements ScenarioParentWidget { private CollectionFieldData field; private final Panel panel = new SimplePanel(); private final FieldConstraintHelper helper; public CollectionFieldDataConstraintEditor( final String factType, final CollectionFieldData field, final Fact givenFact, final AsyncPackageDataModelOracle oracle, final Scenario scenario, final ExecutionTrace executionTrace ) { this.field = field; this.helper = new FieldConstraintHelper( scenario, executionTrace, oracle, factType, field, givenFact ); renderEditor(); initWidget( panel ); } @Override public void renderEditor() { panel.clear(); panel.add( new ListEditor( field, helper, this ) ); } }