1 /*
   2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.tools.internal.xjc.model;
  27 
  28 /**
  29  * Constructor declaration.
  30  *
  31  * <p>
  32  * a constructor declaration consists of a set of fields to be initialized.
  33  * For example, if a class is defined as:
  34  *
  35  * <pre>
  36  * Class: Foo
  37  *   Field: String a
  38  *   Field: int b
  39  *   Field: BigInteger c
  40  * </pre>
  41  *
  42  * Then a constructor declaration of {"a","c"} will conceptually
  43  * generate the following consturctor:
  44  *
  45  * <pre>
  46  * Foo( String _a, BigInteger _c ) {
  47  *   a=_a; c=_c;
  48  * }
  49  * </pre>
  50  *
  51  * (Only conceptually, because Foo will likely to become an interface
  52  * so we can't simply generate a constructor like this.)
  53  *
  54  * @author
  55  *    <a href="mailto:kohsuke.kawaguchi@sun.com">Kohsuke KAWAGUCHI</a>
  56  */
  57 public class Constructor
  58 {
  59     // Since Constructor is typically built when there is no FieldItem
  60     // nor FieldUse, we need to rely on Strings.
  61     public Constructor( String[] _fields ) { this.fields = _fields; }
  62 
  63     /** array of field names to be initialized. */
  64     public final String[] fields;
  65 }