Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5438395c346d160b97720a177ff06f6af2e95f32 (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
###############################################################################
# Copyright (c) 2000, 2003 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials 
# are made available under the terms of the Common Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/cpl-v10.html
# 
# Contributors:
#     IBM Corporation - initial API and implementation
###############################################################################

TextEdit.range_outside= Range of child edit lies outside of parent edit
TextEdit.overlapping= Overlapping text edits
TextEdit.deleted_edit= Cannot add deleted edit

CopySourceEdit.no_target= No target edit provided.
CopySourceEdit.different_source= Target edit has different source edit.

CopyTargetEdit.no_source= No source edit provided.
CopyTargetEdit.different_target= Source edit has different target edit.
CopyTargetEdit.wrong_parent=Source edit must not be the parent of the target.

MoveSourceEdit.no_target= No target edit provided.
MoveSourceEdit.different_source= Target edit has different source edit.

MoveTargetEdit.no_source= No source edit provided.
MoveTargetEdit.different_target= Source edit has different target edit.
MoveTargetEdit.wrong_parent=Source edit must not be the parent of the target.

TextEditProcessor.invalid_length=End position lies outside of document range
UndoMemento.invalid_length=End position lies outside of document range

Back to the top