Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexEmail.java')
-rw-r--r--bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexEmail.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexEmail.java b/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexEmail.java
deleted file mode 100644
index 849023139..000000000
--- a/bundles/org.eclipse.equinox.bidi/src/org/eclipse/equinox/bidi/internal/consumable/BidiComplexEmail.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010, 2011 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
- ******************************************************************************/
-package org.eclipse.equinox.bidi.internal.consumable;
-
-import org.eclipse.equinox.bidi.*;
-import org.eclipse.equinox.bidi.internal.BidiComplexDelimsEsc;
-
-/**
- * Processor adapted to processing e-mail addresses.
- */
-public class BidiComplexEmail extends BidiComplexDelimsEsc {
- static final int LTR = BidiComplexFeatures.DIR_LTR;
- static final int RTL = BidiComplexFeatures.DIR_RTL;
- static final BidiComplexFeatures MIRRORED = new BidiComplexFeatures("<>.:,;@", 2, RTL, LTR, false, false); //$NON-NLS-1$
- static final BidiComplexFeatures NOT_MIRRORED = new BidiComplexFeatures("<>.:,;@", 2, LTR, LTR, false, false); //$NON-NLS-1$
-
- /**
- * This method retrieves the features specific to this processor.
- *
- * @return features with operators "<>.:,;@", 2 special cases,
- * LTR direction for Arabic when the GUI is not mirrored,
- * RTL direction for Arabic when the GUI is mirrored,
- * LTR direction for Hebrew in all cases,
- * and support for both Arabic and Hebrew.
- */
- public BidiComplexFeatures init(BidiComplexHelper helper, BidiComplexEnvironment env) {
- return env.mirrored ? MIRRORED : NOT_MIRRORED;
- }
-
- /**
- * @return parentheses and quotation marks as delimiters.
- */
- protected String getDelimiters() {
- return "()\"\""; //$NON-NLS-1$
- }
-
-}

Back to the top