Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8c47c64e3e60e6b3422a47955b709db9a88c3ed9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*******************************************************************************
 * Copyright (c) 2012 tieto deutschland gmbh (http://www.tieto.com)
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Thomas Jung
 *******************************************************************************/ 


package org.eclipse.etrice.tutorials.simulators.trafficlight;


import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.OutputStream;
import java.io.IOException;

public class ButtonActionListener 
implements ActionListener {

	private OutputStream out;
	private String cmd1 = "requestGreen";
	
	public ButtonActionListener(OutputStream out){
		this.out = out;
	}
	
	public void actionPerformed(ActionEvent arg0) {
		// TODO Auto-generated method stub
		String s = arg0.getActionCommand();
		
		if (s.equals("REQUEST")) {
			System.out.println("Taste gedrückt");
			try {
				out.write(cmd1.getBytes());
				out.flush();
			}
			catch (IOException e){
				System.out.println(e.toString());
			}
		//	out.write(cmd1.getBytes());
		}
	}
}

Back to the top