Created
January 22, 2013 20:01
-
-
Save gastaldi/4597917 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright 2013 Red Hat, Inc. and/or its affiliates. | |
| * | |
| * Licensed under the Eclipse Public License version 1.0, available at | |
| * http://www.eclipse.org/legal/epl-v10.html | |
| */ | |
| package org.jboss.forge.ui; | |
| public interface UIMetadata | |
| { | |
| public <T> T get(Class<T> type); | |
| public <T> UIMetadata set(Class<T> type, T value); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/*
*
*/
package org.jboss.forge.ui;
public interface UIMetadata
{
public T get(Object key);
public UIMetadata set(Object key, Object value);
}