Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Simulator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pg-andi
Simulator
Merge requests
!30
An error occurred while fetching the assigned milestone of the selected merge_request.
Fix SonarQube issues in multicast code
Code
Änderungen prüfen
Branch auschecken
Herunterladen
Patches
Unformatierter Diff
Menüleiste ausklappen
Merged
Fix SonarQube issues in multicast code
feature-#48-fix-sonarqube-for-multicasts
into
master
Overview
1
Commits
1
Pipelines
1
Changes
2
Merged
Fix SonarQube issues in multicast code
Ghost User
requested to merge
feature-#48-fix-sonarqube-for-multicasts
into
master
Mar 24, 2017
Overview
1
Commits
1
Pipelines
1
Changes
2
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
449581ca
1 commit,
Mar 24, 2017
2 files
+
2
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
src/core/Addressable.java
+
1
−
17
View file @ 449581ca
Edit in single-file editor
Open in Web IDE
Show full file
package
core
;
/**
* Classes implementing this interface have an address and
* a certain type, which can be used for identification
* Classes implementing this interface have an address which can be used for identification
*
* Created by Marius Meyer on 10.03.17.
*/
@FunctionalInterface
public
interface
Addressable
{
/**
* Defines different types of addresses.
*/
enum
AddressType
{
/**
* An address of a single node
*/
HOST
,
/**
* An address of a group of nodes
*/
GROUP
}
/**
* Returns the address of the object
*
Loading