update copyright
[fedora-idea.git] / plugins / ui-designer / src / com / intellij / uiDesigner / propertyInspector / properties / MaximumSizeProperty.java
blobe0e223bdd550b67ec79401f41d6ef684325fcfff
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package com.intellij.uiDesigner.propertyInspector.properties;
18 import com.intellij.uiDesigner.radComponents.RadComponent;
19 import com.intellij.uiDesigner.core.GridConstraints;
20 import com.intellij.openapi.project.Project;
21 import com.intellij.openapi.components.ServiceManager;
23 import java.awt.*;
25 /**
26 * @author Anton Katilin
27 * @author Vladimir Kondratyev
29 public final class MaximumSizeProperty extends AbstractDimensionProperty<RadComponent> {
30 public static MaximumSizeProperty getInstance(Project project) {
31 return ServiceManager.getService(project, MaximumSizeProperty.class);
34 public MaximumSizeProperty(){
35 super("Maximum Size");
38 protected Dimension getValueImpl(final GridConstraints constraints) {
39 return constraints.myMaximumSize;
42 protected void setValueImpl(final RadComponent component, final Dimension value) throws Exception{
43 component.getConstraints().myMaximumSize.setSize(value);