Skip to main content
summaryrefslogtreecommitdiffstats
blob: e6e08c3988ca64caeb5f52493245d6550961c27d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
###############################################################################
# Copyright (c) 2003, 2005 IBM Corporation and others.
# 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
###############################################################################
#
# $Source: /cvsroot/webtools/jeetools.move/webtools.javaee.git/plugins/org.eclipse.jem.proxy/proxy/org/eclipse/jem/internal/proxy/core/messages.properties,v $
# $Revision: 1.12 $  $Date: 2005/08/24 20:39:05 $
#



#
# Exception Messages. All of these messages are the text of an java exception.
#
UnexpectedException_EXC_                                    = IWAV0064E Unexpected exception thrown.

# {0} and {1} are java classes (e.g. java.lang.Object)
ClassCast_EXC__IncorrectType                                = IWAV0065E "{0}" is neither a subclass of, nor does it implement, class "{1}".

# Standard Bean Proxy Factory and Standard Bean Type Proxy Factory are terms in beaninfo. They are the
# standard (i.e. base) factories for beans or bean types. Bean types are java classes.
ProxyFactory_EXC__NoBeanProxyFactory                        = IWAV0066E No Standard Bean Proxy Factory has been set.
ProxyFactory_EXC__NoBeanTypeProxyFactory                    = IWAV0067E No Standard Bean Type Proxy Factory has been set.


# {0} is the title of a project.
Not_Java_Project_WARN_                                      = IWAV0068W Project "{0}" is not a java project.
No_VM_WARN_                                                 = IWAV0069W Project "{0}" has no Java JRE defined to use to run programs within this project.
No_Implementation_WARN_                                     = IWAV0070W Cannot find a proxy implementation to use for project "{0}."

ProxyLaunch                                                 = Launching Local Proxy VM
ProxyWaitForBuild                                           = Waiting for build to complete
Expression_InInvalidStateDueTo_EXC_                         = IWAV0162E Expression is in invalid state due to "{0}"
Expression_InInvalidState_EXC_                              = IWAV0163E Expression is in invalid state
Expression_TypeSentInInvalidOrder_EXC_                      = IWAV0164E Expression type sent in invalid order, received: {0}, expected {1}.
Expression_ArrayTypeNotAnArray_EXC_                         = IWAV0165E ArrayType "{0}" is not an array.
Expression_CannotHandleNoReceiveOnFieldAccess_EXC_          = IWAV0166E Access by field name ({0}) (not by proxy) requires a receiver.
Expression_MethodsNeedReceiver_EXC_                         = IWAV0167E Access by method name ({0}) (not by proxy) requires a receiver.
Expression_InvalidMarkNesting                               = IWAV0168E Improper nesting of mark statements in Expression. Tried to pop or endMark to before current mark. Tried to go past Mark# {0}.
Expression_InvalidProxy=Expression Proxy is for a different expression
ProxyPlugin_CleanupDefaultProxyLaunchConfigurations         = Clean up default proxy launch configurations.
ProxyLaunchSupport_RegistryCouldNotStartForSomeReason_WARN_ = IWAV0168W Registry could not be started for some reason.
Expression_CreateProxyReassignmentExpression_InvalidForReassignment_EXC_=Invalid expression type for reassignment: {0}

Back to the top