Download XmlSearchAndReplacePlugin Free Java Code

Description

Plugin for IntelliJ IDEA implementing dreamweaver like search&replace feature for xml/ html tags.

Source Files

The download file XmlSearchAndReplacePlugin-master.zip has the following entries.


.gitignore//ww  w .  ja v  a  2 s.  c  o m
.idea/.gitignore
.idea/ant.xml
.idea/codeStyleSettings.xml
.idea/compiler.xml
.idea/copyright/profiles_settings.xml
.idea/dictionaries/zajac.xml
.idea/encodings.xml
.idea/inspectionProfiles/Project_Default.xml
.idea/inspectionProfiles/profiles_settings.xml
.idea/misc.xml
.idea/modules.xml
.idea/projectCodeStyle.xml
.idea/scopes/scope_settings.xml
.idea/uiDesigner.xml
.idea/vcs.xml
.idea/workspace.xml
META-INF/plugin.xml
TODO
XmlSearchAndReplace.iml
src/org/jetbrains/plugins/xml/searchandreplace/FileMatcher.java
src/org/jetbrains/plugins/xml/searchandreplace/InjectionsMatcher.java
src/org/jetbrains/plugins/xml/searchandreplace/Matcher.java
src/org/jetbrains/plugins/xml/searchandreplace/PatternUsageSearcher.java
src/org/jetbrains/plugins/xml/searchandreplace/SearchAndReplaceMenuAction.java
src/org/jetbrains/plugins/xml/searchandreplace/SearchResult.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/CapturePresentation.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/InsertIntoTag.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/InsertNearElement.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/RemoveAttribute.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/ReplaceContentsOnly.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/ReplaceTagButLeaveContent.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/ReplaceWithContents.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/ReplacementProvider.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/Replacer.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/SetAttribute.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/SetAttributeHelper.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/SurroundWithTag.java
src/org/jetbrains/plugins/xml/searchandreplace/replace/Utils.java
src/org/jetbrains/plugins/xml/searchandreplace/search/Node.java
src/org/jetbrains/plugins/xml/searchandreplace/search/Pattern.java
src/org/jetbrains/plugins/xml/searchandreplace/search/PatternUtil.java
src/org/jetbrains/plugins/xml/searchandreplace/search/TagSearchObserver.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/And.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/AnyTag.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/AnyXmlText.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/AttributePredicate.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/DirectlyContains.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/False.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/HasSpecificAttribute.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/MatchesXmlTextPredicate.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/NoOneTag.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/Not.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/TagNameEquals.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/TagNameMatches.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/TagNameWildcardMatches.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/TagPredicate.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/Utils.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/XmlElementPredicate.java
src/org/jetbrains/plugins/xml/searchandreplace/search/predicates/XmlTextEquals.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/LivePreview.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/MainDialog.form
src/org/jetbrains/plugins/xml/searchandreplace/ui/MainDialog.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/MomentoUserActivityWatcher.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/captures/AttributeNameCapture.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/captures/AttributeValueCapture.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/captures/Capture.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/captures/CapturesListener.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/captures/CapturesManager.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/captures/DirectlyContainsTagNameCapture.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/captures/TagNameCapture.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/CaptureDropHandler.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/CaptureEntry.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/CapturedEditorController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/CreatingXmlController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/InsertIntoTagController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/InsertNearElementController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/RemoveAttributeController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/ReplaceButLeaveContentsController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/ReplaceContentsOnlyController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/ReplaceController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/ReplaceWithContentsController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/ReplacementController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/ReplacementControllerState.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/SetAttributeController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/SurroundWithTagController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/persistence/ReplacementEntry.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/persistence/ReplacementStorageEntry.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/replace/persistence/ReplacementsStorage.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/ConstraintController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/ConstraintControllerDelegate.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/ConstraintType.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/ConstraintTypeController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/ConstraintTypesRegistry.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/DirectlyContainsController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/LoadPatternDialogController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/PatternController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/TagOrTextConstraintController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/WithAttributeController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/WithoutAttributeController.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/constraintTypes/Contains.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/constraintTypes/DirectlyContains.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/constraintTypes/Inside.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/constraintTypes/NotContains.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/constraintTypes/NotInside.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/constraintTypes/RootConstraintType.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/constraintTypes/WithAttribute.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/constraintTypes/WithoutAttribute.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/persistence/ConstraintEntry.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/persistence/ConstraintTypeSpecificEntry.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/persistence/GlobalPatternsStorage.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/persistence/GlobalPatternsStorageState.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/persistence/PatternStorageEntry.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/persistence/PatternsStorage.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/controller/search/persistence/PatternsStorageState.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/replace/MyEditorTextField.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/replace/RemoveAttributeView.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/replace/ReplaceView.form
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/replace/ReplaceView.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/replace/ReplacementView.form
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/replace/ReplacementView.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/replace/SetAttributeView.form
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/replace/SetAttributeView.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/AttributePanel.form
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/AttributePanel.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/CaptureView.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/ConstraintPanel.form
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/ConstraintPanel.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/ConstraintPanelDelegate.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/LoadPatternDialog.form
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/LoadPatternDialog.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/PatternView.form
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/PatternView.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/TagNameCompletionContributor.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/TagPredicatePanel.form
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/TagPredicatePanel.java
src/org/jetbrains/plugins/xml/searchandreplace/ui/view/search/Util.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/AnotherPrimePatternWithNotTest.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/MergePatternsBugTestCase.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/MoreComplexPatternTests.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/MoreComplexPatternWithNotPredicateTests.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/OneComplicatedTest.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/PrimaryPatternTest.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/PrimaryPatternWithNotPredicateTest.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/SelfContainsPatternTest.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/SimpleButBigTest.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/WhiteSpaceMatchingWithNotPredicateTest.java
tests/org/jetbrains/plugins/xml/searchandreplace/tests/XmlSearchTestCase.java

Download

Click the following link to download XmlSearchAndReplacePlugin-master.zip.

XmlSearchAndReplacePlugin-master.zip




















Home »
  Java Free Code »
    Web »




CSS
CSS3
HTML
HTML5
HTTP
Web
Web Application
WebSite