/******************************************************************************* * Copyright (c) 2006 IBM Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package com.ibm.wala.types.generics; public class ArrayTypeSignature extends TypeSignature { ArrayTypeSignature(String s) throws IllegalArgumentException { super(s); if (s.length() == 0) { throw new IllegalArgumentException(); } if (s.charAt(0) != '[') { throw new IllegalArgumentException(); } } @Override public boolean isClassTypeSignature() { return false; } @Override public boolean isTypeVariable() { return false; } public static ArrayTypeSignature make(String s) throws IllegalArgumentException { if (s == null) { throw new IllegalArgumentException("s is null"); } return new ArrayTypeSignature(s); } @Override public boolean isArrayTypeSignature() { return true; } public TypeSignature getContents() { return TypeSignature.make(rawString().substring(1)); } @Override public boolean isBaseType() { return false; } }