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