731ad7c97707bc25535bf279eb9a79668824ed1d
[sdc/sdc-workflow-designer.git] /
1 /**
2  * Copyright (c) 2018 ZTE Corporation.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the Apache License, Version 2.0
5  * and the Eclipse Public License v1.0 which both accompany this distribution,
6  * and are available at http://www.eclipse.org/legal/epl-v10.html
7  * and http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Contributors:
10  *     ZTE - initial API and implementation and/or initial documentation
11  */
12 package org.onap.sdc.workflowdesigner.resources.entity;
13
14 /**
15  *
16  */
17 public class IconData {
18   private String name;
19   
20   private int width;
21   
22   private int height;
23
24   /**
25    * @return the name
26    */
27   public String getName() {
28     return name;
29   }
30
31   /**
32    * @param name the name to set
33    */
34   public void setName(String name) {
35     this.name = name;
36   }
37
38   /**
39    * @return the width
40    */
41   public int getWidth() {
42     return width;
43   }
44
45   /**
46    * @param width the width to set
47    */
48   public void setWidth(int width) {
49     this.width = width;
50   }
51
52   /**
53    * @return the height
54    */
55   public int getHeight() {
56     return height;
57   }
58
59   /**
60    * @param height the height to set
61    */
62   public void setHeight(int height) {
63     this.height = height;
64   }
65   
66   
67
68 }