01 /*
02 * SPDX-License-Identifier: Apache-2.0
03 *
04 * Copyright 2008-2017 the original author or authors.
05 *
06 * Licensed under the Apache License, Version 2.0 (the "License");
07 * you may not use this file except in compliance with the License.
08 * You may obtain a copy of the License at
09 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18 package griffon.builder.javafx.factory
19 /**
20 * Enables MVC groups to be used as component nodes
21 *
22 * @author Andres Almiray
23 * @author Alexander Klein
24 * @since 2.12.0
25 */
26 @SuppressWarnings("rawtypes")
27 class AliasedFXMetaComponentFactory extends FXMetaComponentFactory {
28 final String mvcType
29 final Map<String, Object> attributes = [:]
30 final boolean leaf
31
32 AliasedFXMetaComponentFactory(String mvcType, boolean leaf = true, Map<String, Object> attributes = [:]) {
33 this.leaf = leaf
34 this.mvcType = mvcType
35 this.attributes.putAll(attributes ?: [:])
36 }
37
38 @Override
39 Object newInstance(FactoryBuilderSupport builder, Object name, Object value, Map attributes) {
40 return super.newInstance(builder, name, value, attributes + [value: value])
41 }
42
43 @Override
44 protected Map resolveAttributes(Map attributes) {
45 Map defaultMvcArgs = this.attributes.mvcArgs ?: [:]
46 Map mvcArgs = attributes.mvcArgs ?: [:]
47 Map attrs = [:]
48 attrs.putAll(this.attributes)
49 attrs.putAll(attributes)
50 Map args = [:]
51 args.putAll(defaultMvcArgs)
52 args.putAll(mvcArgs)
53 attrs.mvcArgs = args
54 return attrs
55 }
56 }
|