/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as.util; /** * Utility class that provides a method to cast objects to type parameterized * classes without a warning. */ public class AsCastUtil { @SuppressWarnings("unchecked") public static <T> T cast(Object temp) { return (T) temp; } }