| 
01 /*02  * Copyright 2008-2015 the original author or authors.
 03  *
 04  * Licensed under the Apache License, Version 2.0 (the "License");
 05  * you may not use this file except in compliance with the License.
 06  * You may obtain a copy of the License at
 07  *
 08  *     http://www.apache.org/licenses/LICENSE-2.0
 09  *
 10  * Unless required by applicable law or agreed to in writing, software
 11  * distributed under the License is distributed on an "AS IS" BASIS,
 12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  * See the License for the specific language governing permissions and
 14  * limitations under the License.
 15  */
 16 package org.codehaus.griffon.runtime.core.controller;
 17
 18 import static java.util.Objects.requireNonNull;
 19
 20 /**
 21  * @author Andres Almiray
 22  * @since 2.0.0
 23  */
 24 public class DefaultToolkitAction {
 25     private String name;
 26     private Runnable runnable;
 27
 28     public DefaultToolkitAction() {
 29         this(null);
 30     }
 31
 32     public DefaultToolkitAction(Runnable runnable) {
 33         this.runnable = runnable;
 34     }
 35
 36     public String getName() {
 37         return name;
 38     }
 39
 40     public void setName(String name) {
 41         this.name = name;
 42     }
 43
 44     public Runnable getRunnable() {
 45         return runnable;
 46     }
 47
 48     public void setRunnable(Runnable runnable) {
 49         this.runnable = runnable;
 50     }
 51
 52     public String toString() {
 53         return "Action[" + name + "]";
 54     }
 55
 56     public void execute() {
 57         requireNonNull(runnable, "Argument 'runnable' must not be null for " + this);
 58         runnable.run();
 59     }
 60 }
 |