Java: Javadoc tags

The following are the most common tags used in Javadoc. Each tag has a word that follows it. For example, @param latitude means the parameter is “latitude”.

Javadoc tag Description
@author A person who made significant contribution to the code. Applied only at the class, package, or overview level. Not included in Javadoc output. It’s not recommended to include this tag since authorship changes often.
@param A parameter that the method or constructor accepts. Write the description like this: @param count Sets the number of widgets you want included.
@deprecated Lets users know the class or method is no longer used. This tag will be positioned in a prominent way in the Javadoc. Accompany it with a @see or {@link} tag as well.
@return What the method returns.
@see Creates a see also list. Use {@link} for the content to be linked.
{@link} Used to create links to other classes or methods. Example: {@link Foo#bar} links to the method bar that belongs to the class Foo. To link to the method in the same class, just include #bar.
@since 2.0 The version since the feature was added.
@throws The kind of exception the method throws. Note that your code must indicate an exception thrown in order for this tag to validate. Otherwise Javadoc will produce an error. @exception is an alternative tag.
@Override performs a check to see if the method is an override. used with interfaces and abstract classes.

Comments versus Javadoc tags

A comment in the code is signaled like this:

// sample comment...

/*
sample comment
*/

Javadoc does nothing with these comments.

To include content in Javadoc, you add two asterisks at the start, before the class or method:

/**
*
*
*
*
*/

(In Eclipse, if you type /** and hit return, it autofills the rest of the syntax automatically.)

The format for adding the various element is like this:

/**
* [short description]
* <p>
* [long description]
*
* [author, version, params, returns, throws, see, other tags]
* [see also]
*/

Here’s a real example of Javadoc comments for a method.

/**
* Zaps the roadrunner with the amount of volts you specify.
* <p>
* Do not exceed more than 30 volts or the zap function will backfire.
* For another way to kill a roadrunner, see the {@link Dynamite#blowDynamite()} method.
*
* @exception IOException if you don't enter an data type amount for the voltage
* @param voltage the number of volts you want to send into the roadrunner's body
* @see #findRoadRunner
* @see Dynamite#blowDynamite
*/
public void zapRoadRunner(int voltage) throws IOException {
if (voltage < 31) {
System.out.println("Zapping roadrunner with " + voltage + " volts!!!!");
}
else {
System.out.println("Backfire!!! zapping coyote with 1,000,000 volts!!!!");
}
}

Where the Javadoc tag goes

You put the Javadoc description and tags before the class or method (no need for any space between the description and class or method).

What elements you add Javadoc tags to

You add Javadoc tags to classes, methods, and fields.

  • For the @author and @version tags, add them only to classes and interfaces.
  • The @param tags get added only to methods and constructors.
  • The @return tag gets added only to methods.

Public versus private modifiers and Javadoc

Javadoc only includes classes, methods, etc. marked as public. Private elements are not included. If you omit public, the default is that the class or method is available to the package only. In this case, it is not included in Javadoc.

The description

There’s a short and long description. Here’s an example showing how the description part is formatted:

/**
* Short one line description.
* <p>
* Longer description. If there were any, it would be
* here.
* <p>
* And even more explanations to follow in consecutive
* paragraphs separated by HTML paragraph breaks.
*
* @param variable Description text text text.
* @return Description text text text.
*/
public int methodName (...) {
// method body with a return statement
}

(This example comes from Wikipedia entry.)

The short description is the first sentence, and gets shortened as a summary for the class or method in the Javadoc. After a period, the parser moves the rest of the description into a long description. Use <p> to signal the start of a new paragraph. You don’t need to surround the paragraphs with opening and closing <p> tags – the Javadoc compiler automatically adds them.

Also, you can use HTML in your descriptions, such as an unordered list, code tags, bold tags, or others.

After the descriptions, enter a blank line (for readability), and then start the tags. You can’t add any more description content below the tags. Note that only methods and classes can have tags, not fields. Fields (variables) just have descriptions.

Note that the first sentence is much like the shortdesc element in DITA. This is supposed to be a summary of the entire class or method. If one of your words has a period in it (like Dr. Jones), then you must remove the space following the period by adding Dr.&nbsp;Jones to connect it.

Avoid using links in that first sentence. After the period, the next sentence shifts to the long paragraph, so you really have to load up that first sentence to be descriptive.

The verb tense should be present tense, such as gets, puts, displays, calculates…

What if the method is so obvious (for example, printPage) that your description (“prints a page”) becomes obvious and looks stupid? Oracle says in these cases, you can omit saying “prints a page” and instead try to offer some other insight:

Add description beyond the API name. The best API names are “self-documenting”, meaning they tell you basically what the API does. If the doc comment merely repeats the API name in sentence form, it is not providing more information. For example, if method description uses only the words that appear in the method name, then it is adding nothing at all to what you could infer. The ideal comment goes beyond those words and should always reward you with some bit of information that was not immediately obvious from the API name. – How to write javadoc comments

Avoid @author

Commenting on Javadoc best practices, one person says to avoid @author because it easily slips out of date and the source control provides better indication of the last author. (Javadoc coding standards

Order of tags

Oracle says the order of the tags should be as follows:

@author (classes and interfaces)
@version (classes and interfaces)
@param (methods and constructors)
@return (methods)
@throws (@exception is an older synonym)
@see
@since
@serial
@deprecated

@param tags

@param tags only apply to methods and constructors, both of which take parameters.

After the @param tag, add the parameter name, and then a description of the parameter, in lowercase, with no period, like this:

@param url the web address of the site

The parameter description is a phrase, not a full sentence.

The order of multiple @param tags should mirror their order in the method or constructor.

Stephen Colebourne recommends adding an extra space after the parameter name to increase readability (and I agree).

As far as including the data type in the parameter description, Oracle says:

By convention, the first noun in the description is the data type of the parameter. (Articles like “a”, “an”, and “the” can precede the noun.) An exception is made for the primitive int, where the data type is usually omitted. – How to write doc comments using Javadoc

The example they give is as follows:

@param ch the character to be tested

However, the data type is visible from the parameters in the method. So even if you don’t include the data types, it will be easy for users to see what they are.

Note that you can have multiple spaces after the parameter name so that your parameter definitions all line up.

@param tags must be provided for every parameter in a method or constructor. Failure to do so will create an error and warning when you render Javadoc.

Note that usually classes don’t have parameters. There is one exception: Generics. Generic classes are classes that work with different type of objects. The object is specified as a parameter in the class in diamond brackets: <>. Although the Javadoc guidance from Oracle doesn’t mention them, you can add a @param tag for a generic class to note the parameters for the generic class. See this StackOverflow post for details. Here’s an example from that page:

/**
* @param <T> This describes my type parameter
    */
    class MyClass<T>{

        }

@returns tag

Only methods return values, so only methods would receive a @returns tag. If a method has void as a modifier, then it doesn’t return anything. If it doesn’t say void, then you must include a @return tag to avoid an error when you compile Javadoc.

@throws tag

You add @throws tags to methods only if the method throws a particular kind of error.

Here’s an example:

@throws IOException if your input format is invalid

Stephen Colebourne recommends starting the description of the throws tag with an “if” clause for readability.

The @throws feature should normally be followed by “if” and the rest of the phrase describing the condition. For example, “@throws if the file could not be found”. This aids readability in source code and when generated.

If you have multiple throws tag, arrange them alphabetically.

Doc comments for constructors

It’s a best practice to include a constructor in a class. However, if the constructor is omitted, Javadoc automatically creates a constructor in the Javadoc but omits any description of the constructor.

Constructors have @param tags but not @return tags. Everything else is similar to methods.

Doc comments for fields

Fields have descriptions only. You would only add doc comments to a field if it were something a user would use.

Cases where you don’t need to add doc comments

Oracle says there are 3 scenarios where the doc comments get inherited, so you don’t need to type them:

When a method in a class overrides a method in a superclass When a method in an interface overrides a method in a superinterface When a method in a class implements a method in an interface – How to write Javadoc comments

@see tags

The @see tag provides a see also reference. There are

@see #field
@see #Constructor(Type, Type...)
@see #Constructor(Type id, Type id...)
@see #method(Type, Type,...)
@see #method(Type id, Type, id...)
@see Class
@see Class#field
@see Class#Constructor(Type, Type...)
@see Class#Constructor(Type id, Type id)
@see Class#method(Type, Type,...)
@see Class#method(Type id, Type id,...)
@see package.Class
@see package.Class#field
@see package.Class#Constructor(Type, Type...)
@see package.Class#Constructor(Type id, Type id)
@see package.Class#method(Type, Type,...)
@see package.Class#method(Type id, Type, id)

How to write Javadoc comments

You can create links to other classes and methods using the {@link} tag.

Here’s an example from Javadoc coding standards on making links:

/**
* First paragraph.
* <p>
* Link to a class named 'Foo': {@link Foo}.
* Link to a method 'bar' on a class named 'Foo': {@link Foo#bar}.
* Link to a method 'baz' on this class: {@link #baz}.
* Link specifying text of the hyperlink after a space: {@link Foo the Foo class}.
* Link to a method handling method overload {@link Foo#bar(String,int)}.
*/
public ...

To link to another method within the same class, use this format: {@link #baz}. To link to a method in another class, use this format: {@link Foo#baz}.

You want to avoid always hyperlinking things. In that case, it’s better to use <code> tags.

If you want to create a “see also” reference, use this format: @see #baz. To change the linked text, put a word after #baz like this: @see #baz Baz method.

Previewing Javadoc comments

In Eclipse, see the Javadoc tab at the bottom of the screen to preview the Javadoc information included for the class you’re viewing.

More information

Oracle’s explanation of Javadoc tags

And Javadoc

About Tom Johnson

Tom Johnson

I'm an API technical writer based in the Seattle area. On this blog, I write about topics related to technical writing and communication — such as software documentation, API documentation, AI, information architecture, content strategy, writing processes, plain language, tech comm careers, and more. Check out my API documentation course if you're looking for more info about documenting APIs. Or see my posts on AI and AI course section for more on the latest in AI and tech comm.

If you're a technical writer and want to keep on top of the latest trends in the tech comm, be sure to subscribe to email updates below. You can also learn more about me or contact me. Finally, note that the opinions I express on my blog are my own points of view, not that of my employer.

Β
Βασίλης Μαντζούνης
5 points
7 months ago

Θα θυμίσω ότι το 2010 για όλα έφταιγαν οι δημόσιοι υπάλληλοι. Πέσαν όλοι να μας φάνε. Κάποιοι, δημόσιοι υπάλληλοι και μη, λέγαμε από τότε ότι σειρά έχουν όλοι όσοι εργάζονται, για να καλυφθεί και να συνεχίσει το κλέψιμο των ολίγων, οικογένειας και σια, σε βάρος των πολλών. Μετά πήραν σειρά οι εργαζόμενοι του ιδιωτικού τομέα. Τώρα ήρθε η σειρά των ελεύθερων επαγγελματιών. Πολλοί εκ των οποίων εργάζονται το ίδιο ή και περισσότερο με τους εργαζόμενους τους. Όχι όλοι προφανώς. Επίσης θα θυμίσω ότι άλλο η φοροαποφυγή που μπορεί να γίνει και "νόμιμα" και άλλο η φοροδιαφυγή. Τα λαμόγια έχουν τρόπο να μην φορολογουνται. Θυμίζω ότι μειώθηκε ο φόρος επί των κερδών των ναυτιλιακών εταιρειών από 10% σε 5% επί ΝΔ. Αυτά για όσους ξεχνάνε εύκολα.

Γ
ΓΙΑΝΝΗΣ ΚΑΤΣΩΝΗΣ
2 points
8 months ago

Το σύστημα της οικονομικής εξουσίας στο καπιταλισμό έχει τα υποχείρια πολιτικούς ως υπηρετικό προσωπικό. Και αυτό το προσωπικό προκειμένου να τους υπηρετεί νομοθετεί το "αφορολόγητό τους" αλλά και την κρατική ενίσχυσή τους. Και αυτή την κρατική ενίσχυση την εξασφαλίζει φορολογώντας όλους τους άλλους. Με τους έμεσους φόρους (ΦΠΑ) από τους πάντες και με τους άμεσους από όποιον μπορεί να αρπάξει η τσιμπίδα. Οι δε οικονομικοί εξουσιαστες, ότι αποκομίζουν το μεταφέρουν εξωχώρια. Όταν δε εμφανιστούν τίποτα λίστες Φαλτσιάνι ή Λαγκάρντ, έχουν τους πρόθυμους δικαστικούς που φτυαρίζουν στάχτη και τις θάβουν. Πρι από χρόνια οι ΑΡΔ που είναι εκτελεστικά όργανα των ολιγαρχών που κατέχουν τα ΜΜΕ ξεσάλωναν εναντίον των Κρανιδιωτών που στην εφορία τους υπάρχουν 199 οfsor αποκρύπτοντας ότι στη περιοχή της Ερμιονίδας δεκάδες ολιγάρχες διαθέτουν παραθαλάσσιες βίλες με προβλήτες ακόμα και μικρες νησίδες που τις έχουν σε εξωχώριους παραδείσους και δε πληρώνουν δεκάρα στο Ελληνικό κράτος. Κύρίως εφοπλιστές που πηγαίνουν εκεί με τα σκάφη τους καίγοτας αφορολόγητο πετρέλαιο.

O
Oti Nane®
-4 points
8 months ago

Όποιος μιλάει για το θέμα καλό θα είναι να μας λέει και το ύψος των εισοδημάτων του όπως αυτά είναι δηλωμένα στην τελευταία του φορολογική δήλωση.

Θα κάνω την αρχή.

52 χιλιάδες.

Ακούω λαμόγια.....

Γ
ΓΙΑΝΝΗΣ ΚΑΤΣΩΝΗΣ
1 point
7 months ago

Τα δικό μου και μοναδικά έσοδα μου είναι 1300 ευρώ το μήνα επι 12 = 15.600 μείον το φόρο του 22% για πάνω από τις 8.500 αφορολόγητα. Ήτοι 7100χ 22%=1562. Καθαρά 14.038 ευρά, Με 36 χρόνια έσημα βαρέα και 25 χρονια κρατήσεις για το επικουρικό

A
anyk
3 points
7 months ago

Μας τσακισες, τι υπονοούμενο-φωτιά ήταν αυτό τωρα; Ρε σεις έτσι μιλάτε στις παρέες σας; Θα πέθαινα από την πλήξη ρε παιδιά.

O
Oti Nane
-3 points
7 months ago

Μπα, μην το λες, έχει ενδιαφέρον.

Καλύτερα από το να λες "φιλαράκι, μου λείπουν 99 ευρώ για να συμπληρώσω ένα κατοστάρικο".

Ή να σου λέει ένας φίλος σου να βγείτε το βράδυ και να του λες ότι θα μπορέσεις μετά που θα μπει η σύνταξη της μανούλας σου.

Ξέρεις, αυτά που είναι η δική σου καθημερινότητα.

A
anyk
3 points
7 months ago

Βλέπω όταν τσαντιζεται το γυρνάς πάντα σε μανουλες. Οιδιπόδειο;

O
Oti Nane
-3 points
7 months ago

Γιατί ρε φίλε; Είπα τίποτα κακό για την μανούλα σου;

Ότι σε στηρίζει από το υστέρημα της είπα.

Αυτό είναι αξιέπαινο.

Τώρα αν το χαρτζιλίκι που σου δίνει στο βγάζει από την μύτη με την γκρίνια της εγώ δεν το ξέρω. Αυτά είναι πράγματα μεταξύ σας.

A
anyk
2 points
7 months ago

Η μανούλα μου με στήριξε από το υστέρημά της, η δική σου δεν ξέρω αν είχε υστέρημα ή δεν ήξερε που να επενδύσει τα κλεμμένα και αποφάσισε να τα ρίξει στο βόθρο. Όμως να ξέρεις ότι αυτή η εμμονή με τις μανουλες, είτε τις βρίζεις είτε όχι, δείχνει πράγματα. Τα υπόλοιπα στον ψυχολόγο σου.

H
HungryKitten
1 point
8 months ago

Τι να ακούσεις ρε μαλακισμένο, εσύ είσαι το λαμόγιο, δεν τα δούλεψες τα 52χιλιάρικα, τα εφάπαξ της μάνας σου είναι αυτό. Πόσο φόρο πλήρωσες; 268 ευρώ;

O
Oti Nane
-2 points
8 months ago

Θα ακούσω πρώτα τι δήλωσες και μετά θα σου πω πόσο φόρο πλήρωσα.

Ακούω.

Και μην μου πεις ψέματα, γιατί όπως γνωρίζεις καλά μπορώ να ρωτήσω την μανούλα σου να μου πει πόσα.

H
HungryKitten
2 points
8 months ago

Αχαχαχα πόσο είσαι ρε 12 και κάνεις διαγωνισμούς μαλακίας με τους συμμαθητές σου; Αύριο το πρωί με τον κηδεμόνα σου!

O
Oti Nane
-2 points
8 months ago

Εντάξει ρε γατάκι, ένα αστείο έκανα.

Αφού το ξέρω ότι ζεις με το χαρτζιλίκι της μάνας σου, μου το έχει πει η ίδια....

H
HungryKitten
3 points
8 months ago

Θα σε αφήσω στις φαντασιώσεις σου, εξελικτικά ένα παράσιτο, αναπτυξιακά μόλις έφτασες εφηβεία άλλωστε.

F
fanis_Xania
-2 points
8 months ago

έτσι δυστυχώς @Κατσωνη, δεν έχει σχέση αν είναι καπιταλισμός ή όχι βέβαια... αυτό π γράφεις γίνεται λόγω της διαφθοράς των πολιτικών και ότι η δικαιοσύνη ταχουν κάνει πλακάκια μεταξύ τους και θαβονται όλα και η ζωή συνεχίζεται, αυτοί γίνονται πιο πλούσιοι και εμείς φόρους και φόρους.

Γ
ΓΙΑΝΝΗΣ ΚΑΤΣΩΝΗΣ
1 point
8 months ago

Η πολιτική εξουσία στον καπιταλισμό είναι συναφής με την οικονομική εξουσία. Στον ανταγωνισμό μεταξύ των εξουσιαστών έρχονται οι υποτακτικοί τους και νομοθετουν αναλογα. Στο δικό μας προτεκτοράτο οι εφοπλιστές απολαμβάνουν διαχρονικά προνόμια με 54 φοροαπαλλαγές και δυνατότητα φοροαποφυγής. ΄Ενα πρόσφατο παράδειγμα. Το δικαίωμα του ΒΕΤΟ στην ΕΕ η κυβέρηση αυτή αλλά και οι προηγούμεες δεν το έχουν ασκήσει ουτε όταν αποφάσεις κοστίζουν και γονατίζουν τον Ελληνικό Λαό. Από την είσοδό μας στην ΕΕ μόνο μία φορά ασκήθηκε ΒΕΤΟ. Στην απόφαση της ΕΕ για εμπάργκο στην Ρωσία προκειμένου να μπορούν οι Έλληνες εφοπλιστές να μεταφέρουν Ρώσικο πετρέλαιο.

F
fanis_Xania
2 points
8 months ago

μια άρρωστη κατάσταση μεταξύ του κράτους και του ελεύθερου επαγγελματία,

στην εξοντοτικη και μπερδεμένη φορολογια του κράτους ο ελεύθερος επαγγελματίας ψάχνει να βρει τρόπους να επιβιώσει..

οι 9/10 που γνωρίζω δουλεύουν όλη μέρα και στο τέλος αν και κάνουν μεγάλους τζίρους ....στο τέλος τους μενουν ελάχιστα!! φορολογια+ενέργεια και προκαταβολες φόρου κτλπ κτλπ στο τέλος σου μένουν ψίχουλα...

τώρα λύση σε αυτό το προβλημα να δω ανθα δώσει ποτέ κανείς Έλληνας πολιτικός.

T
TJ
4 points
8 months ago

Μαγικές λύσεις δεν υπάρχουν φάνη θέλει πέταγμα το σύστημα στην ελλάδα και φτου κι από την αρχή

F
fanis_Xania
0 points
8 months ago

σωστός TJ.

P
Persona.Non.Grata
1 point
8 months ago

Μίλησε κανείς για αξιακή αποδοχή του νεοφιλελευθερισμού;

A
anyk
4 points
8 months ago

Κυρίαρχη ιδεολογία είναι η ιδεολογία της κυρίαρχης τάξης.

D
Dimitris Mihalakopoulos
6 points
8 months ago

Δεν το καταλαβαίνω αυτό με τους ελεύθερους επαγγελματίες. Ποιοι είναι; Πως ορίζονται; Αληθεύει ότι κρύβουν πίσω τους αμύθητα πλούτη στα σεντούκια και θα μας ξεχρεώσουν; Είναι ο Μαρινάκης ελεύθερος επαγγελματίας; Είναι ο Αλαφούζος ή ο Περιστέρης; Εγώ λέω να τους ορίσουμε έτσι μπας και τους αρπάξουμε καμιά δεκάρα επιτέλους. Να δω Μαρινάκη να δηλώνει 200 ευρώ εισόδημα και το mega να σφυρίζει αδιάφορα. Βρήκαμε επιτέλους την χρυσή χήνα μας;

A
anyk
2 points
8 months ago

Όχι, οι περισσότεροι από αυτούς δεν κρύβουν αμύθητα πλούτη, πόσο μάλλον να ξεχρεώσουν μία αστική τάξη που λειτουργεί ως καταβόθρα που καταπίνει τα πάντα. Φοσοδιαφυγή όμως υπάρχει: Για άλλους είναι ο λόγος που μπορούν να ζήσουν, για άλλους ο λόγος που μπορούν να ζήσουν άνετα και για κάποιους τρίτους ο λόγος που μπορούν να πουλάνε και μούρη στους μισθωτούς.

Τα έσοδα δεν έχει σημασία για το κράτος αν είναι νόμιμα ή παράνομα. Αν είναι και παράνομα μπορεί πιό εύκολα να αρμέξει όταν χρειάζεται. Το όλο ζήτημα είναι οι πολλές φορές αρρωστημένες νοοτροπίες που αναπτύσσονται γύρω από καταστάσεις ημί και εντελώς παράνομες, είτε αυτοί είναι δημόσιοι υπάλληλοι, είτε ελεύθεροι επαγγελματίες, είτε μικροαστοί. Γιατί μην νομίζεις ότι οι περισσότεροι θεωρούν ότι αδικούν, ίσα ίσα θεωρούν ότι τα δικαιούνται, είτε γιατί τα αξίζουν, είτε γιατί υπηρετούν τις μεγάλες ιδέες του συστήματος.

E
enemy
4 points
8 months ago

Αν ένα μαγικό τρόπο στην ελλάδα μπορούσε να αποκαλυφθεί το 100% των μαύρων εσόδων, ο τομεας των ελεύθερων επαγγελματιών θα εξαϋλωνόταν στη στιγμη. Η επιβίωση του μικρομεσαίου ελ. επαγγελματια ΕΞΑΡΤΑΤΑΙ από την ικανότητά του να μην εμφανίζει έσοδα

A
anyk
0 points
8 months ago

Αυτό είναι μια κουβέντα enemy όσον αφορά το λόγο που το σύστημα θέλει τους ελεύθερους επαγγελματίες και δεν τους "εξαϋλώνει στην στιγμή" όπως λες. Πιστεύω ότι υπάρχουν διάφοροι λόγοι τόσο γι αυτούς όσο και για άλλες κατηγορίες που δημιουργούν μια μάλλον πλαστή εικόνα της πραγματικής κατάστασης.

N
name
0 points
8 months ago

Δεν ειμαι σιγουρος...

Αν ισχυε καποτε σιγουρα τωρα με τις τιμες που χρεωνουν δεν ισχυει καθολου...

A
anyk
0 points
8 months ago

Έτσι κι αλλιώς δεν είναι ενιαία κατηγορία.

D
Dimitris Mihalakopoulos
3 points
8 months ago

Τι να νομίσω κι εγώ, σε ένα καπιταλιστικό σύστημα όλοι απομονώνονται και κάνουν τι επιλογές τους ανάλογα με την κατάστασή τους. Έξω πας κάθεσαι να πιεις έναν καφέ και ακούς συζητήσεις από φιλελεύθερους να μαλώνουν για τα ενοίκια που πρέπει να πληρώσουν για τους φοιτητές παιδιά τους και στην ίδια συζήτηση πιο μετά να γκρινιάζουν για τους φοιτητές που άργησαν να τους πληρώσουν το 500αρη ενοίκιο στη τρύπα που νοικιάζουν οι ίδιοι σε άλλους. Ένας ατέρμονος κύκλος όπου και οι μισοτηγανιές θα εκμεταλλευτούν τον άλλο άνθρωπο και με την σειρά τους θα γίνουν θύματα εκμετάλλευσης, κακώς πράττουν όλοι, κάπως πρέπει να προσπαθήσουν να σπάσουν τον κύκλο. Αλλά οι αρρωστημένες νοοτροπίες αναπόσπαστο κομμάτι της κουλτούρας, άλλωστε συχνά ακούς το "ότι φας και ότι αρπάξει ο κώλος σου σε αυτή τη ζωή".

A
anyk
6 points
8 months ago

Η μικρή μου εμπειρία αγαπητέ για το "σπάσιμο του κύκλου" είναι ότι η ατομική προσπάθεια σπανίως επιβραβεύεται έστω και ηθικά (γιατί υλικά δεν περιμένεις επιβράβευση εφόσον τον "σπαζεις") Το σύνηθες είναι να γυρίζει μπούμεραγκ στον "τολμηρό" κι αυτό ενισχύει τη τάση που περιγράφεις.

Θα σου πώ μόνο αυτό: Γνωστός μου νοίκιασε το σπίτι του ένα πολύ λογικό ποσό (200 ευρώ, τριάρι σε όχι κακή περιοχή στο εγγυώμαι) και όταν αναζήτησε τον ενοικιαστή που δεν πλήρωνε(!) το βρήκε επινοικιασμένο: Ο νοικάρης το είχε...νοικιάσει. Δεν είναι μια πρόκληση να το βάλεις μετά 500 ευρώ στην λογική "αποκλείονται οι λούμπεν"; Είναι στο λέω εγώ, αλλά μετά πέφτεις στον φαύλο κύκλο που λέγαμε.

Δυστυχώς το σύστημα έχει την ικανότητα να αναπαράγει τον εαυτό του και χρειάζεται η ρημάδα η συλλογικότητα. ΣΥΛΛΟΓΙΚΟΤΗΤΑ και συλλογική δράση, είναι τό μόνο που μπορεί να σπάσει τον κύκλο.

D
Dimitris Mihalakopoulos
4 points
8 months ago

Συλλογικότητα είναι η μόνη ΤΙΝΑ που αποδέχομαι.

N
Nikolaos Karavidas
0 points
8 months ago

Αυτοί που αναφέρεις δεν είναι ελεύθεροι επαγγελματίες. Μιλάς για επιχειρηματίες και εφοπλιστές… ανώνυμες εταιρίες έχουν.

N
Nikolaos Karavidas
2 points
8 months ago

Και πολλά δήλωσαν αν αναλογιστεί κανείς πως πολλοί βιομήχανοι και εφοπλιστές δηλώνουν ζημιές! Να τους δώσει μια χρηματοδότηση ο ζαβός, σαν αυτήν που έδωσε στον άντρα της φον ντε Λαιεν και να στηρίξει την αγορά που στενάζει από τις μαλακιε… εεεε πολιτικές του ήθελα να πω.