1REM
2REM  Licensed to the Apache Software Foundation (ASF) under one or more
3REM  contributor license agreements.  See the NOTICE file distributed with
4REM  this work for additional information regarding copyright ownership.
5REM  The ASF licenses this file to You under the Apache License, Version 2.0
6REM  (the "License"); you may not use this file except in compliance with
7REM  the License.  You may obtain a copy of the License at
8REM 
9REM      http://www.apache.org/licenses/LICENSE-2.0
10REM 
11REM  Unless required by applicable law or agreed to in writing, software
12REM  distributed under the License is distributed on an "AS IS" BASIS,
13REM  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14REM  See the License for the specific language governing permissions and
15REM  limitations under the License.
16REM
17REM
18
19set _CLASSPATHCOMPONENT=%1
20if ""%1""=="""" goto gotAllArgs
21shift
22
23:argCheck
24if ""%1""=="""" goto gotAllArgs
25set _CLASSPATHCOMPONENT=%_CLASSPATHCOMPONENT% %1
26shift
27goto argCheck
28
29:gotAllArgs
30set LOCALCLASSPATH=%LOCALCLASSPATH%;%_CLASSPATHCOMPONENT%
31
32