Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 320d5cc7ffc81b5aef348681b6377198fb25d45a (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*******************************************************************************
 * Copyright (c) 2010, 2018 SAP AG 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:
 *     SAP AG - initial API and implementation
 *     IBM Corporation - multiple heap dumps
 *******************************************************************************/
package org.eclipse.mat.hprof;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS
{
    private static final String BUNDLE_NAME = "org.eclipse.mat.hprof.messages"; //$NON-NLS-1$
    public static String AbstractParser_Error_IllegalType;
    public static String AbstractParser_Error_InvalidHPROFHeader;
    public static String AbstractParser_Error_NotHeapDump;
    public static String AbstractParser_Error_UnknownHPROFVersion;
    public static String AbstractParser_Error_UnsupportedHPROFVersion;
    public static String EnhancerRegistry_ErrorCreatingParser;
    public static String EnhancerRegistry_ErrorCreatingRuntime;
    public static String ExportHprof_AvoidExample;
    public static String ExportHprof_ExportTo;
    public static String ExportHprof_PrepareClasses;
    public static String ExportHprof_PrepareGCRoots;
    public static String ExportHprof_PrepareObjects;
    public static String ExportHprof_PrepareThreadStacks;
    public static String ExportHprof_DumpClasses;
    public static String ExportHprof_DumpGCRoots;
    public static String ExportHprof_DumpObjects;
    public static String ExportHprof_DumpStrings;
    public static String ExportHprof_DumpThreadStacks;
    public static String ExportHprof_RemapProperties;
    public static String ExportHprof_SegmentSizeMismatch;
    public static String ExportHprof_SegmentTooLong;
    public static String HprofIndexBuilder_ExtractingObjects;
    public static String HprofIndexBuilder_Parsing;
    public static String HprofIndexBuilder_Scanning;
    public static String HprofIndexBuilder_Writing;
    public static String HprofParserHandlerImpl_Error_ExpectedClassSegment;
    public static String HprofParserHandlerImpl_Error_MultipleClassInstancesExist;
    public static String HprofParserHandlerImpl_HeapContainsObjects;
    public static String HprofRandomAccessParser_Error_DumpIncomplete;
    public static String HprofRandomAccessParser_Error_DuplicateClass;
    public static String HprofRandomAccessParser_Error_IllegalDumpSegment;
    public static String HprofRandomAccessParser_Error_MissingClass;
    public static String HprofRandomAccessParser_Error_MissingFakeClass;
    public static String JMapHeapDumpProvider_ErrorCreatingDump;
    public static String JMapHeapDumpProvider_HeapDumpNotCreated;
    public static String JMapHeapDumpProvider_WaitForHeapDump;
    public static String JMapHeapDumpProvider_ListProcesses;
    public static String LocalJavaProcessesUtils_ErrorGettingProcesses;
    public static String LocalJavaProcessesUtils_ErrorGettingProcessListJPS;
    public static String Pass1Parser_DetectedCompressedReferences;
    public static String Pass1Parser_Error_IllegalRecordLength;
    public static String Pass1Parser_Error_IllegalType;
    public static String Pass1Parser_Error_InvalidHeapDumpFile;
    public static String Pass1Parser_Error_invalidHPROFFile;
    public static String Pass1Parser_Error_NoHeapDumpIndexFound;
    public static String Pass1Parser_Error_SupportedDumps;
    public static String Pass1Parser_Error_UnresolvedName;
    public static String Pass2Parser_Error_HandleMustCreateFakeClassForName;
    public static String Pass2Parser_Error_HandlerMustCreateFakeClassForAddress;
    public static String Pass2Parser_Error_InsufficientBytesRead;
    public static String Pass1Parser_Info_UsingDumpIndex;
    public static String Pass1Parser_Info_WroteThreadsTo;
    public static String Pass1Parser_Error_WritingThreadsInformation;
    public static String Pass1Parser_UnexpectedEndPosition;
    public static String Pass1Parser_UnexpectedRecord;
    public static String Pass1Parser_GuessingLengthOverflow;
    public static String Pass1Parser_HeapDumpCreated;
    public static String Pass1Parser_HeapDumpsFound;
    public static String HPROFPreferences_Description;
    public static String HPROFPreferences_Strictness;
    public static String HPROFPreferences_Strictness_Stop;
    public static String HPROFPreferences_Strictness_Warning;
    public static String HPROFPreferences_Strictness_Permissive;
    public static String HPROFStrictness_Unhandled_Preference;
    public static String HPROFStrictness_Stopped;

    static
    {
        // initialize resource bundle
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
    }

    private Messages()
    {}
}

Back to the top