/** * This file is part of Erjang - A JVM-based Erlang VM * * Copyright (c) 2009 by Trifork * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. **/ package erjang; public class ETuple3 extends ETuple { public EObject elem1; public EObject elem2; public EObject elem3; static public ETuple3 cast(ETuple value) { if (value.arity() == 3) return (ETuple3) value; return null; } @Override public ETuple3 blank() { ETuple3 res = new ETuple3(); return res; } public static ETuple3 create() { return new ETuple3(); } static public ETuple3 make_tuple(EObject e1, EObject e2, EObject e3) { ETuple3 t = create(); t.elem1 = e1; t.elem2 = e2; t.elem3 = e3; return t; } @Override public int arity() { return 3; } @Override public EObject elm(int i) { switch (i) { case 1: return elem1; case 2: return elem2; case 3: return elem3; default: return bad_nth(i); } } @Override public void set(int i, EObject term) { switch (i) { case 1: elem1 = term; break; case 2: elem2 = term; break; case 3: elem3 = term; break; default: bad_nth(i); } } /** * @param msg * @return */ public static ETuple3 cast(EObject msg) { if (msg instanceof ETuple3) { return (ETuple3) msg; } else { return null; } } }