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 griffon.builder.pivot.factory
17
18 import org.apache.pivot.wtk.media.Picture
19
20 import java.awt.image.BufferedImage
21
22 /**
23 * @author Andres Almiray
24 */
25 class PictureFactory extends PivotBeanFactory {
26 PictureFactory() {
27 super(Picture)
28 }
29
30 Object newInstance(FactoryBuilderSupport builder, Object name, Object value, Map attributes) throws InstantiationException, IllegalAccessException {
31 if (value instanceof Picture) return value
32 if (value instanceof BufferedImage) return new Picture(value)
33 if (!value && attributes.containsKey('image')) return new Picture(attributes.remove('image'))
34 throw new IllegalArgumentException("In $name you must define a value or a property image: of type ${BufferedImage.class.name}")
35 }
36 }
|