View Javadoc

1   package org.kuali.student.common.ui.client.widgets.rules;
2   
3   import java.util.List;
4   
5   import org.kuali.student.common.ui.client.mvc.Callback;
6   import org.kuali.student.core.assembly.data.Metadata;
7   
8   /**
9    * Copyright 2010 The Kuali Foundation Licensed under the
10   * Educational Community License, Version 2.0 (the "License"); you may
11   * not use this file except in compliance with the License. You may
12   * obtain a copy of the License at
13   * <p/>
14   * http://www.osedu.org/licenses/ECL-2.0
15   * <p/>
16   * Unless required by applicable law or agreed to in writing,
17   * software distributed under the License is distributed on an "AS IS"
18   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
19   * or implied. See the License for the specific language governing
20   * permissions and limitations under the License.
21   */
22  public interface AccessWidgetValue {
23      public void getValue(final Callback<String> doneSaveCallback);
24      public void setValue(String id);
25      public void initWidget(List<Metadata> fieldsMetadata);
26  }