Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Acyclic Visitor pattern #734 #753

Merged
merged 25 commits into from
Jun 28, 2018
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8bf53fe
Adding acyclic-visitor module in pom.xml
Argyro-Sioziou May 27, 2018
e9a219f
Merge branch 'master' of https://github.com/Argyro-Sioziou/java-desig…
Argyro-Sioziou May 27, 2018
9e15abb
Adding pom.xml file
Argyro-Sioziou May 27, 2018
18a75c0
Adding ModemVisitor interface
Argyro-Sioziou May 27, 2018
3f92b8f
Adding ModemTest
Argyro-Sioziou May 27, 2018
75734a6
Adding Modem abstract class
giorgosmav21 May 27, 2018
323395d
Adding ModemVisitorTest
giorgosmav21 May 27, 2018
bbdf1cd
Adding Hayes and Zoom classes
giorgosmav21 May 27, 2018
9771884
Adding HayesVisitor and ZoomVisitor
Argyro-Sioziou May 27, 2018
5e1da63
Adding ConfigureForDosVisitor and ConfigureForUnixVisitor
Argyro-Sioziou May 27, 2018
36a1477
Adding App class
giorgosmav21 May 27, 2018
27f58e0
Adding HayesTest and ZoomTest
giorgosmav21 May 27, 2018
17164c2
Adding class diagram
Argyro-Sioziou May 27, 2018
4023944
Adding README.md file
giorgosmav21 May 27, 2018
afe85e2
Enhancing code format
Argyro-Sioziou May 28, 2018
179a02b
Removing default constructors
Argyro-Sioziou Jun 14, 2018
49feead
Removing interfaces' test classes
Argyro-Sioziou Jun 14, 2018
6167d06
Removing test case
Argyro-Sioziou Jun 14, 2018
8b1ed95
Updating ConfigureForDosVisitorTest and ConfigureForUnixVisitorTest c…
Argyro-Sioziou Jun 14, 2018
6a0fa74
Fixing typos
Argyro-Sioziou Jun 14, 2018
6636fb1
Adding AllModemVisitor interface
Argyro-Sioziou Jun 14, 2018
04d80f0
Adding consequences in README.md
Argyro-Sioziou Jun 14, 2018
51659fe
Updating HayesVisitor and ZoomVisitor
Argyro-Sioziou Jun 14, 2018
57f60c5
Updating javadoc comments
Argyro-Sioziou Jun 14, 2018
f9bdd58
Merge remote-tracking branch 'upstream/master'
Argyro-Sioziou Jun 14, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding ModemVisitorTest
  • Loading branch information
giorgosmav21 committed May 27, 2018
commit 323395daaff39381cb52a465d5cdeb5dfadd4f13
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/**
* The MIT License
* Copyright (c) 2014-2016 Ilkka Seppälä
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.iluwatar.acyclicvisitor;

/**
* ModemVisitor test class
*/
public interface ModemVisitorTest {

}