Giter VIP home page Giter VIP logo

java-ascii-table's Introduction

#java ascii table exported from googlecode

java-ascii-table's People

Contributors

flyfire avatar

Watchers

 avatar

java-ascii-table's Issues

Trying to print an empty table throws an exception.

To reproduce the problem:
1. Create valid table headers.
2. Create an empty data set.
3. Print the table.

I'm expected to see an empty table which is a particular case of a table. 
Instead we get an exception.


java.lang.IllegalArgumentException: Please provide valid data : 
[[Ljava.lang.String;@28500060
    at com.bethecoder.ascii_table.impl.SimpleASCIITableImpl.getTable(SimpleASCIITableImpl.java:156)
    at com.bethecoder.ascii_table.ASCIITable.getTable(ASCIITable.java:73)

Original issue reported on code.google.com by [email protected] on 24 Oct 2013 at 8:26

Problem with arrays in class

What steps will reproduce the problem?
1. I have an array inside of a class

What is the expected output? What do you see instead?
I would like to see all of the members from the array one below the another, 
but I see the address of that array instead

What version of the product are you using? On what operating system?
Latest version, Windows 8.1 

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 31 May 2015 at 5:12

Table layout will get destroy when passed over email body content.

What steps will reproduce the problem?
1. Pass the getTable() output over email body content.
2. Table layout will get destroy


What is the expected output? What do you see instead?
Table layout should not be destroy

What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 11 Dec 2014 at 4:15

CollectionASCIITableAware JavaBean CamelCase property names

The bean properties names must be all lowercase, otherwise the getter method is 
not found.

The problematic piece of code:

private String capitalize(String property) {
     return property.length() == 0 ? property : 
     property.substring(0, 1).toUpperCase() + property.substring(1).toLowerCase();
}

The call to toLowerCase() must be omitted.


Original issue reported on code.google.com by [email protected] on 14 Apr 2014 at 5:44

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.