Filter
Exclude
Time range
-
Near
💡 Java tip: Catch mistakes at compile time annotating overridden methods with @Override. For example, given a class: class Report { void print() { ... } } ❌ If we extend the class without @Override: class PDFReport extend Report{ void prnt() { ... } //There is a typo, print method is not overridden } ✅ With @Override: class PDFReport extend Report{ @Override void prnt() { ... } //This way you get an error during compilation, //and you are forced to fix the method name } #Java #Annotations
2
17
1,086
✅Open/Closed Principle (OCP): OCP is a SOLID principle that states classes should be open for extension but closed for modification. Instead of touching existing implementation, you should use Java interfaces and inheritance to add new behavior. Examples: ❌ A bad way to implement a report generator: class ReportGenerator { public void generateReport(String type) { if (type.equals("PDF")) { System.out.println("Generating PDF Report..."); } else if (type.equals("CSV")) { System.out.println("Generating CSV Report..."); } else if (type.equals("EXCEL")) { System.out.println("Generating Excel Report..."); } } } ✅ A better way: //Define an interface interface Report { void generate(); } //Define implementations class PdfReport implements Report { public void generate() { System.out.println("Generating PDF Report..."); } } class CsvReport implements Report { public void generate() { System.out.println("Generating CSV Report..."); } } //Use a specific implementation public class ReportApp { public static void main(String[] args) { Report report = new PdfReport(); report.generate(); } } #Java #SOLIDPrinciples
5
7
76
4,372
17 Sep 2024
Have you tried telling your computer a joke to distract it while it magically turns your Word template into a PDF report? Source: devhubby.com/thread/how-to-c… #CodeSnippet #PDFConverter #PDFreport #TechSolutions #template #pdf

6
15
Need to hand in a report of your #construction documentation? Just create a #PDFReport from it—now also including your 2D Photos! With PDF Reports you can deliver your site documentation in a format that is loved trusted by your stakeholders. Learn more: holobuilder.link/PDF-Reports…
1
3
We have a brand new video on our YouTube channel 🎉 Click on the link to watch it and learn more about The PDF Report in GoodX Web: youtu.be/J7k24TDRdAo 🗓 #PDFReport #Clinical #ClinicalInformation #GoodXWeb
2
Good read ! HEALTHCARE’S MOST WIRED : NATIONAL TRENDS 2018 lnkd.in/eHAunef #pdfreport #healthcareITtrends #mobile #technology
1
1
23 Oct 2018
#Rstats - 1st #bookdown contest 🏆- Our R-dev @StatnMap finished in "Worth Mentioning" for {pdfreport}: A R 📦 for a PDF template for Reports with special Title page and customisable 🇬🇧🇨🇵 header/footer: github.com/statnmap/pdfrepor… Congrats ! Results here: ow.ly/LNns50jrl5Y
2
8
12 Jul 2018
Did you know that you can now download your analysis results in an easy-to-read PDF report from our #PathwayBrowser? After submitting your sample just use the "Report (PDF)" option in the details panel reactome.org/PathwayBrowser/… #Biology #PDF #PDFReport #PathwayAnalysis
10
9
Local Citation Scanner-Show Active and Missing Citations, Download White-Lable PDFreport citationbuilderpro.com/app/l… … #localseo #citationfinder
PDFReport - @OxfordEnergy : Europe’s Energy Union:a problem of governance oxfordenergy.org/wpcms/wp-co…

1