/** * 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.jbpm.process.audit; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JTextField; import javax.swing.WindowConstants; import org.kie.internal.runtime.StatefulKnowledgeSession; public class ProcessInstanceExecutorFrame extends JFrame { private static final long serialVersionUID = 510l; private StatefulKnowledgeSession workingMemory; private JTextField processIdTextField; private JButton startButton; public ProcessInstanceExecutorFrame(StatefulKnowledgeSession workingMemory) { this.workingMemory = workingMemory; setSize(new Dimension(200, 150)); setTitle("Start Process"); setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); initializeComponent(); } private void initializeComponent() { JPanel panel = new JPanel(); panel.setLayout(new GridBagLayout()); getRootPane().setLayout(new BorderLayout()); getRootPane().add(panel, BorderLayout.CENTER); processIdTextField = new JTextField("com.sample.ruleflow"); GridBagConstraints c = new GridBagConstraints(); c.weightx = 1; c.fill = GridBagConstraints.HORIZONTAL; c.insets = new Insets(5, 5, 5, 5); panel.add(processIdTextField, c); startButton = new JButton("Start"); startButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent event) { start(); } }); c = new GridBagConstraints(); c.gridy = 1; c.anchor = GridBagConstraints.EAST; c.insets = new Insets(5, 5, 5, 5); panel.add(startButton, c); } private void start() { workingMemory.startProcess(processIdTextField.getText()); workingMemory.fireAllRules(); } }