Skip to content

Instantly share code, notes, and snippets.

@gastaldi
Created January 22, 2013 20:01
Show Gist options
  • Select an option

  • Save gastaldi/4597917 to your computer and use it in GitHub Desktop.

Select an option

Save gastaldi/4597917 to your computer and use it in GitHub Desktop.
/*
* 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);
}
@lincolnthree

Copy link
Copy Markdown

/*

package org.jboss.forge.ui;

public interface UIMetadata
{
public T get(Object key);

public UIMetadata set(Object key, Object value);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment