1// Copyright 2016-2020 The Libsacloud Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package sacloud
16
17// propIcon アイコン内包型
18type propIcon struct {
19	Icon *Icon // アイコン
20}
21
22// GetIcon アイコンを取得
23func (p *propIcon) GetIcon() *Icon {
24	return p.Icon
25}
26
27// GetIconID アイコンIDを取得
28func (p *propIcon) GetIconID() ID {
29	if p.HasIcon() {
30		return p.Icon.ID
31	}
32	return -1
33}
34
35// GetIconStrID アイコンID(文字列)を取得
36func (p *propIcon) GetIconStrID() string {
37	if p.HasIcon() {
38		return p.Icon.GetStrID()
39	}
40	return ""
41}
42
43// HasIcon アイコンがセットされているか
44func (p *propIcon) HasIcon() bool {
45	return p.Icon != nil
46}
47
48// SetIconByID 指定のアイコンIDを設定
49func (p *propIcon) SetIconByID(id ID) {
50	p.Icon = &Icon{Resource: NewResource(id)}
51}
52
53// SetIcon 指定のアイコンオブジェクトを設定
54func (p *propIcon) SetIcon(icon *Icon) {
55	p.Icon = icon
56}
57
58// ClearIcon アイコンをクリア(空IDを持つアイコンオブジェクトをセット)
59func (p *propIcon) ClearIcon() {
60	p.Icon = &Icon{Resource: NewResource(EmptyID)}
61}
62